$(function() {
	$( "select[name='ff_how_did_you_hear']" ).change(function() {
		if ( $( this ).val() == "Other" ) {
			$( "#ff_toggle_other" ).css( "display", "block" );
		} else {
			$( "#ff_toggle_other" ).css( "display", "none" );
		}
	});
});