Hi. I have a pull down menu in my form. Is it possible if I can have the default selection in the menu be set to a blank? And how do I validate the form to make sure the user did choose a selection from the pull down menu? I have the following code to validate a text box, but how about validate pull down menus? Thank you!
function checkform(form)
{
if(form.fname.value == ""
{
alert('You forgot to enter your First Name?');
form.fname.focus();
return false;
}
return true;
}
function checkform(form)
{
if(form.fname.value == ""

{
alert('You forgot to enter your First Name?');
form.fname.focus();
return false;
}
return true;
}