Acá te hice ésto:
<html>
<head>
<script>
function Formulario(form){
form.mensaje.value = 'Soy ' +form.soy.value + ' y estoy ' + form.estoy.value;
}
</script>
</head>
<body>
<form name=form>
¿Quien eres? <input type=text name="soy"><br>
¿Como estás? <input type=text name="estoy"><br>
<textarea name=mensaje></textarea><br>
<input type=button value=Mandar onclick="Formulario(this.form)">
</form>
</body>
</html>
¿Es parecido a lo que buscas?