function soloNumero(numero){
	j=0;
	tex="";
	texto=document.getElementById(numero).value;
	for(i=0;i<texto.length;i++){
		if(!isNaN(texto.charAt(i))){
			tex+=texto.charAt(i);				
		}	
		document.getElementById(numero).value=tex;
	}
	
}




