//Contacto Ok Como nos conocio.
$(function(){
	$('#otro').click(function(){
		if($(this).attr('checked')){
			$('#otroTexto').removeAttr('disabled');
		}else{
			$('#otroTexto').attr('disabled','disabled');
		}
	});
});
