Is there a way to disable multi select?
with this code you can disable multiselect:
document.getElementById('mySelectBox').removeAttribute("multiple");;
... of a selectbox like this:
One Two Three
(not tested)