function validate() 
{
    if (document.wiprivatecollege.dayofevent.selectedIndex==0)
    {
    alert('Please enter the Day You Plan to Attend.');
    return false;
    }

    if (document.wiprivatecollege.FirstName.value=='')
	{
    alert('Please enter your First Name.');
    return false;
    }
    
	if (document.wiprivatecollege.LastName.value=='')
	{
    alert('Please enter your Last Name.');
    return false;
    }
    
    if (document.wiprivatecollege.Address1.value=='')
	{
    alert('Please enter your Address.');
    return false;
    }

    if (document.wiprivatecollege.City.value=='')
	{
    alert('Please enter the City you live in.');
    return false;
    }
    
    if (document.wiprivatecollege.State.selectedIndex==0)
    {
    alert('Please enter the State you live in.');
    return false;
    }
    
    if (document.wiprivatecollege.Zip.value=='')
	{
    alert('Please enter your Zip Code.');
    return false;
    }
    
    if (document.wiprivatecollege.HomePhone.value=='')
	{
    alert('Please enter your Home Phone.');
    return false;
    }

    if (document.wiprivatecollege.Major.value=='')
	{
    alert('Please enter a Major you are interested in.');
    return false;
    }

   
    if (document.wiprivatecollege.HighSchool.value=='')
	{
    alert('Please enter your High School.');
    return false;
    }
    
    if (document.wiprivatecollege.GraduationYear.value=='')
	{
    alert('Please enter your Graduation Year.');
    return false;
    }
}

