A textarea is a larger input field which allows multiple lines of text. Add this just before the submit button in your form:
<div>
<label for="essay">Why?</label>
<textarea name="essay" rows="8" cols="35"></textarea>
</div>
The rows and cols attributes set the size of the textarea.