var nav4 = window.Event ? true : false;
function acceptNum(evt){   
var key = nav4 ? evt.which : evt.keyCode;   
return (key <= 13 || (key>= 48 && key <= 57));
}



var campo="#camPre input[@type=text]"
var resp="#resInp"

$(document).ready(function(){

   	$(campo).ready(function(){

	if(this){
    	$(resp).text( "Ingrese por ejm: de 120 hasta 500.");
	}

  });

    	$(campo).focus(function(){

	if(this){
    	$(resp).text( "Ingrese Valores numericos.");
	}

  });




  });

 

 











