A drop down is a select field
Code:
<select name="select">
<option value="feedback">Site Feedback</option>
<option value="bug">Report A Bug</option>
</select>
Then PHP would take the value of whatever option was selected and send that to you.
Then just have a text are if that is what you want.
Code:
<textarea name="body"></textarea>
It would all be in a form like
Code:
<form action="submit.php>
<select name="select">
<option value="feedback">Site Feedback</option>
<option value="bug">Report A Bug</option>
</select>
<textarea name="body"></textarea>
<input type="submit" value="email me">
http://www.phpeasystep.com/phptu/8.html