How can i dynamically remove all options of a drop down box in javascript?
Its very easy using JavaScript and DOM:
while (selectBox.firstChild) selectBox.removeChild(selectBox.firstChild);