function checkHowDidYouLearn() {
	var val = $('#how_did_you_learn_about').val();
	if (val!='') {
		/*
		if (val == 'Advertising') {
			var otherval = $('#how_did_you_learn_about_other').val();
			if ($.trim(otherval)=='') {
				alert("Please specify the advertisement");
				document.MM_returnValue = false;
			}
		}
		if (val == 'Colleague/Beverage Industry Professional') {
			var otherval = $('#how_did_you_learn_about_other').val();
			if ($.trim(otherval)=='') {
				alert("Please specify the Colleague/Beverage Industry Professional name.");
				document.MM_returnValue = false;
			}
		}
		if (val == 'Trade Show / Trade Organization') {
			var otherval = $('#how_did_you_learn_about_other').val();
			if ($.trim(otherval)=='') {
				alert("Please specify the Trade Show / Trade Organization name.");
				document.MM_returnValue = false;
			}
		}
		if (val == 'Other') {
			$('#how_did_you_learn_about_other_label').text('Please Specify:');
			$('#how_did_you_learn_about_other_container').show();
			var otherval = $('#how_did_you_learn_about_other').val();
			if ($.trim(otherval)=='') {
				alert("Please specify the Other source.");
				document.MM_returnValue = false;
			}
		}
		*/
	}
	else {
		alert("Please specify how you heard about BEVFORCE.");
		document.MM_returnValue = false;
	}
}
function howDidYouLearnChange() {
	var val = $('#how_did_you_learn_about').val();
	$('#how_did_you_learn_about_other_container').hide();
	if (val == 'Advertisement') {
		$('#how_did_you_learn_about_other_label').text('Please Specify:');
		$('#how_did_you_learn_about_other_container').show();
	}
	if (val == 'Colleague/Friend') {
		$('#how_did_you_learn_about_other_label').text('Please Specify:');
		$('#how_did_you_learn_about_other_container').show();
	}
	if (val == 'Trade Show / Organization') {
		$('#how_did_you_learn_about_other_label').text('Please Specify:');
		$('#how_did_you_learn_about_other_container').show();
	}
	if (val == 'In The News') {
		$('#how_did_you_learn_about_other_label').text('Please Specify:');
		$('#how_did_you_learn_about_other_container').show();
	}
	if (val == 'Other') {
		$('#how_did_you_learn_about_other_label').text('Please Specify:');
		$('#how_did_you_learn_about_other_container').show();
	}
}
