combobox.value
is not supported cross-browser afaik, you should get the value of the currently selected option instead, using
combobox.options[combobox.selectedIndex].value
instead, remembering to check that combobox.selectedIndex is > -1 first, otherwise no option is selected.
HTH,
Dai