Código PHP:
<script type="text/javascript">
function validar2(e) { // 1
tecla = (document.all) ? e.keyCode : e.which; // 2
if (tecla==9) return true; // 3
patron =/[0-9.]/; // 4
te = String.fromCharCode(tecla); // 5
return patron.test(te); // 6
}
</script>