Hola
Trulala de cordoba
A ver si este código te ayuda:
Código PHP:
<html>
<head>
<script type="text/javascript">
function pulsar(e,obj) {
if (e.keyCode==13) {
obj.form.txt1.value = obj.value;
obj.style.display = 'none';
}
}
</script>
</head>
<body>
<form>
<input type="text" name="txt1" onfocus = "txt2.style.display='block'; txt2.value = this.value; txt2.focus()" />
<textarea name="txt2" style="display:none" onkeypress = "return pulsar(event,this)"></textarea>
</form>
</body>
</html>
Saludos,