View Single Post
Old 12-05-2007, 12:19 PM   #2 (permalink)
bdm
The Acquainted
Good Samaritan 
 
Join Date: Nov 2007
Posts: 127
Thanks: 14
bdm is on a distinguished road
Default

Are you sure that the value you're checking against is correct? See maybe if you can replace 'value' with 'text'.
Code:
document.regform.country.options[document.regform.country.selectedIndex].value ==
to
Code:
document.regform.country.options[document.regform.country.selectedIndex].text ==
bdm is offline  
Reply With Quote