To create a multiple select-box with javascript you need a very ugly hack in IE.
if (navigator.appName.match(/Internet Explorer/)) { fsel = document.createElement(\'<SELECT MULTIPLE>\'); } else { fsel = document.createElement(\'select\'); fsel.multiple = true; }