Single Select

Omitting the multiple attribute from the underlying native select force the widget to use radio buttons instead of checkboxes. It is a good idea to use the header parameter in order to hide/change the "check all"/"uncheck all" links.

$("select").multiselect({
   header: "=Select an option",
   noneSelectedText: "Select an Option",
   selectedList: 1
});