//Passes values from 'Join Our Talent Community' banner field
$(window).load(function() {
	//Add onClick event that will gather user input from the dropdown box
	$('#jotc-form-id').submit(function(){		
		if($('#jotc-form-q').val()=='Enter email'){
			alert('Please enter your email.');
		}else{
			//Set the document's location to the dropdown value URL
			document.location.href='/talentcommunity/subscribe?email='+$('#jotc-form-q').val();
		}
		
		//Do not return to the form's default action
		return false;
		
	});
	
});
