kazakru, код у тебя конечно еще тот...

Вот мой примерчик...
<script>
function Go() {
document.getElementById('t1').value+=document.getElementById('t2').value
}
</script>
<form>
<input id='t1' type='text' />
<input id='t2' type='text' />
<input type='button' value='Go' onclick='Go()' />
</form>