In your webpage form, you would need to put this:
<select name="recipient" size="1">
<option>Select recipient</option>
<option value="1">ME</option>
<option value="2">YOU</option>
<option value="3">HIM</option>
<option value="4">HER</option>
</select>
In FormMail.pl, you would need to put this:
%recipient_alias = (
'1' => 'me@example.com',
'2' => 'you@example.com',
'3' => 'him@example.com',
'4' => 'her@example.com'
);