I am trying to get the following form submission to show alert box if value is not equal to 'Province"
function validate_form ( )
{
if ( document.contactForm.Province!='Region 1' )
alert ( "Please Note: We only install in Region 1!" );
}
My form name is "contactForm" my select menu is called "Province" I always get the alert here regardless of the selection in Province.
What am I doing wrong?