SyntaxFix
Write A Post
Hire A Developer
Questions
This tutorial shows exactly what you need to do: Add options to an HTML select box with javascript
Basically:
daySelect = document.getElementById('daySelect'); daySelect.options[daySelect.options.length] = new Option('Text 1', 'Value1');