A ver, sería más o menos así:
Código:
<input id="input1" maxlenght="11" onkeyup="pasar(this.value);" />
<input id="input2" />
Y el código JavaScript sería algo así:
Código:
function pasar(val) {
if (val.length == 11) document.getElementById('input2').value = val.substr(10);
}
Servido.
(Iniciando cuenta regresiva)