Gracias por responder,
El problema esta en q tu asignas el valor de Original al convertido.
La idea es ir escribiendo y q se vaya cambiando a mayusculas.
Este es mi codigo
Código PHP:
<html>
<head>
<script language="JavaScript" type="text/JavaScript">
function convertir()
{
document.getElementById("original").value=document.getElementById("original").value.toUpperCase();
}
</script>
</head>
<body>
<table width="50%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>texto</td>
</tr>
<tr>
<td><input name="original" type="text" id="original" onKeyUp="convertir()"></td>
</tr>
</table>
</body>
</html>