You can use the SELECTED property of the Option you are looking at :
document.myForm.mySelect.options[0].selected
is TRUE if the first option in the Dropdown called mySelect on the form called myForm is selected. In the case of a multiple select, then each will be set to true.
|