var selectList = document.getElementById("mylist"); for (i=0;i<selectList.options.length;i++) { selectList.removeChild(selectList.options.item(i)); }
selectList.options.length = 0;
Jump To Top of Thread