$(document).ready(function(){   	
  //Hide div w/id extra
 //$(".other_hide").css("display", "none");
$(".other_hide").hide(); 
 $("#how").change(function(){
	$("#how option:selected").each(function (){
		if($(this).val() == 'other'){
			$(".other_hide").fadeIn('slow', function(){});
		}
		else{
			$(".other_hide").hide();
		}
	 });
 });   
});
function verifyMe(){
var msg='';
var captcha='';
if(document.getElementById('name').value==''){
	msg+='- Name\n\n';}

var email=document.getElementById('email').value;
if(!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(email))){
msg+='- Invalid Email Address: '+email+'\n\n';}

if(document.getElementById('email').value==''){
	msg+='- Email\n\n';}
captcha = document.getElementById('mathchpa').value;
if(document.getElementById('mathchpa').value!="Dodge" && document.getElementById('mathchpa').value!="dodge" && captcha.toLowerCase() != 'chrysler' ){
	msg+='- Who makes the viper?\n\n';}

if(msg!=''){
	alert('The following fields are empty or invalid:\n\n'+msg);
	return false;
}else{
	return true; }

}

