the options are an array, so you can do something like this:
alert(document.yourform.yourselect.options[0].value);
If you want the value of the currently selected option, do this:
var yourselect = document.yourform.yourselect;
alert(yourselect.options[yourselect.selectedIndex].value);