document.observe("dom:loaded", function() {
	if($('how_you_heard')) {
		$("how_you_heard").observe("change", function(e) {
			if ($F("how_you_heard") == "Other") {
				$('ohyhid').show();
			} else {
				$('ohyhid').hide();
			}
		});
	}
});
