Lets not even see where he's typing.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="">
<head>
<title>New document</title>
</head>
<body>
<input type="text" id="fakey">
<input type="text" style="border:1px solid red;position:absolute;left:-1000px;" id="stuff" onkeyup="thingy();">
<script type="text/javascript">
var i = 1;
document.getElementById('stuff').focus();
function thingy()
{
var string = "fake stuff";
document.getElementById("fakey").value = string.substr(0,i);
i++;
}
</script>
</body>
</html>