$(document).ready(function() {
	$("#heard_of_from").live("change", function() {
		if($(this).val() == "other") {
			$("#heard_of_from_other").show();
		} else {
			$("#heard_of_from_other").hide();
		}
	});
});