jQuery - grab it from here
http://www.jquery.comInclude it at the top of your page:
<script src="scripts/jquery.js"></script>
Then underneath:
<script>
$("#textbox1").change(function(){
textinput = $(this).val();
$("#textbox2").val(textinput);
$("#textbox3").val(textinput);
});
</script>
HTH