I'm working on a contact form that has a dropdown menu for each staff member. I want to create links to the contact page from the main page with something similar to an anchor and have the user arrive at the form with the staff member already selected on the dropdown. Example: If user clicked this link www.mydomain.com/contact#Kevin it would take them to the same contact form but Kevin would already be selected in the dropdown. Does anyone have any ideas of how I should go about doing this? Here's my code from the form: <form method="post" action="" name="contactform"> <p><input type="text" class="post_user_name" id="formname" name="formname" value="<?=$formname; ?>" onFocus="this.value=(this.value=='Your Name') ? '' : this.value;" onBlur="this.value=(this.value=='') ? 'Your Name' : this.value;"/></p> <p><input type="text" class="post_user_email" id="formemail" name="formemail" value="<?=$formemail; ?>" onFocus="this.value=(this.value=='Email Address') ? '' : this.value;" onBlur="this.value=(this.value=='') ? 'Email Address' : this.value;" /></p> <p>Who do you want to receive this email? <select name="formstaff"> <option value="General">General Information</option> <option value="Paul">Paul</option> <option value="Keith">Keith</option> <option value="Doug">Doug</option> <option value="Kevin">Kevin</option> </select> </p><br> <p><textarea class="post_user_message" rows="5" cols="10" id="formcomments" name="formcomments" onFocus="this.value=(this.value=='Message') ? '' : this.value;" onBlur="this.value=(this.value=='') ? 'Message' : this.value;"><?=$formcomments; ?></textarea></p> <p><input type="submit" value="Submit" name="contactus" id="contactus" class="contactsubmit" /></p> </form> Code (markup):