Si entiendo bien lo que necesitas es que al ingresar 12 caracteres se valide si es root valido o no, si es así prueba con esto:
Código HTML:
<html>
<head>
<script>
function validar(e) {
val = e.target.value+String.fromCharCode(e.charCode);
if(val.length == 12) {
//aqui enviar el script de validacion de rut
if(val == "qwertyuiopas") {
alert("Root correcto");
} else {
alert("Root incorrecto");
}
}
}
</script>
</head>
<body>
<input type="text" onKeyPress="validar(event)" />
</body>
</html>