Remove textarea field on Unsubscribe page?

Hi!
Anybody know how to remove the textarea field on the Unsubscribe page so that there’s just the email address and the submit button?

Thanks!
-Bob

Got it! (well, at least this works). I added a new div called “hide” in the index.php page around the textarea and then used CSS in the subscribe.css to not display it. Like so:

$res .= ‘<div class=“hide”>’;
$res .= $GLOBALS[‘strUnsubscribeRequestForReason’];
$res .= sprintf(’<br/><textarea name=“unsubscribereason” cols="%d" rows="%d" wrap=“virtual”></textarea>’, $c, $r).$finaltext;
$res .= ‘</div>’;

CSS
.hide { display: none }