Hola, jorgenc. Bienvenido al Foro.
Prueba esto:
Código PHP:
<html>
<head>
<script>
function minus(e) {
tecla=(document.all)?e.keyCode:e.which;
if(tecla>64 && tecla <91)
if(document.all)
e.keyCode=tecla+32;
else
e.which=tecla+32;
}
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<input type="text" onKeyPress="return minus(event)">
</body>
</html>
Espero que te funcione. Saludos,