$(document).ready(function(){
						  //  $("#job_other,#hear_other,#reason_other").hide();
						   
						  $("#job").change(function(){
									if($(this).val()=='Other'){
									$("#job_other").fadeIn('slow');	
									}else{
										$("#job_other").fadeOut('slow');
										}				
													
													});//
						  
						   
						     $("#hear").change(function(){
									if($(this).val()=='Other'){
									$("#hear_other").fadeIn('slow');	
									}else{
										$("#hear_other").fadeOut('slow');
										}				
													
													});//
							 
							   $("#reason").change(function(){
									if($(this).val()=='Other'){
									$("#reason_other").fadeIn('slow');	
									}else{
										$("#reason_other").fadeOut('slow');
										}				
													
													});//
						   });//