$(document).ready(function() {
	$('#contact-form').validate({
		errorElement:'div'
	});
	
	$('#hear-about').change(function() {
		//var theOption = $('#hear-about option:selected').val();
		if ($('#hear-about option:selected').val() == 'Other') {
			$('#other-hide').slideDown(750);
		} else {
			$('#other-hide').slideUp(750);		
		}
	});
});
