A vuela pluma se me ocurre esto
Código:
<input type='text' id='txtMayus' name='txtMayus' value='' onChange='Comprobar(this)'>
<script>
function Comprobar(txt)
{
var texto=txt.value
var textoMaxus=txt.value.toUpperCase()
if (texto==textoMaxus)
{
alert('SI')
}
else
{
alert('no')
}
}
</script>