function validate_form2 ( )
{
	valid = true;

        if ( document.contact_form.name.value == "" )
        {
                alert ( "Please fill in the 'Name' box." );
                valid = false;
        }
		
        if ( document.contact_form.email.value == "" )
        {
                alert ( "Please fill in the 'Email' box." );
                valid = false;
        }
      
		 if ( document.contact_form.phone.value == "" )
        {
                alert ( "Please fill in the 'Phone Number' box." );
                valid = false;
        }
		
		  if ( document.contact_form.activity.selectedIndex == 0 )
        {
                alert ( "Please select an Activity." );
                valid = false;
        }
		
	   
		
       
		

        return valid;
}

