12-05-2007, 12:19 PM
|
#2 (permalink)
|
|
The Acquainted
Join Date: Nov 2007
Posts: 127
Thanks: 14
|
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 ==
|
|
|
|