Michael: Mein Script fuer die ueberpruefung eines forms functioniert nicht, help !

Beitrag lesen

Bitte kann mir jemand helfen, das problem bei der ueberpruefung liegt in der ueberpruefung "form.country"
Hier der code:

function chkForm ()
{
   if(document.Form.email.value == "")
      {
       alert("Please fill in your email address !");
       document.Form.email.focus();
       return false;
      }
   if(document.Form.email.value.indexOf('@') == -1)
      {
       alert("This is not a vaild email address!");
       document.Form.email.focus();
       return false;
      }
   if(document.Form.country.value == "Please Choose One . . .")
      {
       alert("Please choose a country !");
       document.Form.country.focus();
       return false;
      }
  }
    //-->
   </script>

<select name="country"><option selected value="Please Choose One . . .">Please Choose One . . .<option VALUE="AFG">Afghanistan<option VALUE="ALB">Albania<option VALUE="DZA">Algeria<option VALUE="ASM">American
</select>

Ich hoffe es kann mir jemand helfen, vielen Dank

und Gruesse aus Hong Kong

Michael

Samoa<option VALUE="AND">Andorra<option VALUE="AGO">Angola<option VALUE="AIA">Anguilla<option VALUE="ATA">Antarctica<option VALUE="ATG">Antigua
and Barbuda<option VALUE="ARG">Argentina     usw.