$(document).ready(function(){ 
    $("#contac").change(function() 
    { 
    	var val = $(this).val();
    	
    	if (val==""){
    		$("#otros").hide();
    		$("#profesores").hide();
    		$("#bibliotecario").hide();
    	}else if (val=="Profesores"){
     		$("#otros").hide();
    		$("#profesores").show(); 
    		$("#bibliotecario").hide();  		
    	}else if (val=="Bibliotecario"){
     		$("#otros").hide();
    		$("#profesores").hide(); 
    		$("#bibliotecario").show();  		
    	}else if (val=="Otros"){
    		$("#otros").show();
    		$("#profesores").hide(); 
    		$("#bibliotecario").hide();  		
    	} 
   }); 
});

