if you have a website, a contact us form is always useful to have, here's an example of a good and simple contact us form:
Your Name
Your E-mail Address:
Select Department:
Your Message:
 
HTML CODE:
<form action="/" method="post">
<table border="0" cellpadding="3" cellspacing="1" bgcolor="#2372A0">
<tr>
<td bgcolor="#14425C">Your Name </td>
<td bgcolor="#14425C"><input type="text" name="name"></td>
</tr>
<tr>
<td bgcolor="#14425C">Your E-mail Address:</td>
<td bgcolor="#14425C"><input type="text" name="email"></td>

</tr>
<tr>
<td bgcolor="#14425C">Select Department:</td>
<td bgcolor="#14425C">
<select name="category">
<option value="0" selected>--- Department ---</option>
<option value="1">General Inquiries</option>

<option value="2">Public Relations</option>
<option value="3">Business Development</option>
<option value="4">Report Service Abuse</option>
<option value="5">Webmaster</option>
</select>
</td>
</tr>

<tr>
<td bgcolor="#14425C">Your Message:</td>
<td bgcolor="#14425C"><textarea name="message" rows="8" cols="40" wrap="virtual"></textarea></td>
</tr>
<tr>
<td bgcolor="#14425C">&nbsp;</td>
<td bgcolor="#14425C"><input type="submit" name="contactus" value="Submit">
</tr>

</table>
</form>