	$(document).ready(function() {   
		$('input[name=how_hear]').click(function() {
			toggle_how_hear_other();
		});
		toggle_how_hear_other();
	});
	function toggle_how_hear_other() {
		$('#how-hear-other').css('display','none');
		if ($('input[name=how_hear]:checked').val() == "Other") {
			$('#how-hear-other').css('display','inline');
		}
	}
