$(document).ready(function() {
	$("#how_heard_other").bind("click", function(){
		showOther();							    
	});			   
});

function showOther() {
		if( $("#how_heard_other:checked").val() != null ){
			$("#other").show();
		}else{
			$("#other").hide();
		}
}