Try using a relatively positioned div, it will contain a text area along with another div positioned absolutely.
<div id="outer" style="position: relative">
<textarea id="txtArea" style="text-decoration: underline;"></textarea>
<div style="position: absolute; left: 5px; top: 5px;">Comments:</div>
</div>
You'll have to style the textarea a bit to get the effect you desire.