If I understood you correctly, you want to send feedback to a chosen e-mail from a select list.
Try this code: (works well in IE, somewhat good in NS)
<HTML>
<HEAD>
<TITLE> Feedback page </TITLE>
<script language="JavaScript">
function feedback(toemail){
// set action, method and enctype
// toemail is a parameter that comes
// from select list
document.feedbackform.action = "mailto:" + toemail document.feedbackform.method = "post";
document.feedbackform.enctype = "text/plain";
// the result from enctype depend on e-mail client program
}
</script>
</HEAD>
<BODY>
Feedback page<hr>
<form name="feedbackform" onSubmit="feedback(this.fsel.options[this.fsel.selectedIndex].value)">
Enter your name: <input type="text" name="fname"><br>
Enter your email: <input type="text" name="femail"><br>
Comments: <textarea name="comments"></textarea><br>
Comments apply to :
<select name="fsel">
<option value="someone@some.com" selected>
someone@some.com
</option>
<option value="sometwo@some.com">
sometwo@some.com
</option>
</select>
<br>
<input type="Submit" value="Send your feedback">
</form>
</BODY>
</HTML>
More sofisticated variant is:
<HTML>
<HEAD>
<TITLE> Feedback page </TITLE>
<script language="JavaScript">
function feedback(toemail,feedname,feedemail,comments){
document.feedbackform.action = "mailto:" + toemail + "?subject=Feedback&body=Feedback from: " + feedname + " ;" + "email: " + feedemail + " ;" + "Comments: " + comments;
document.feedbackform.method = "post";
document.feedbackform.enctype = "text/plain";
}
</script>
</HEAD>
<BODY>
Feedback page<hr>
<form name="feedbackform" onSubmit="feedback(this.fsel.options[this.fsel.selectedIndex].value, this.fname.value, this.femail.value, this.comments.value)">
Enter your name: <input type="text" name="fname"><br>
Enter your email: <input type="text" name="femail"><br>
Comments: <textarea name="comments"></textarea><br>
Comments apply to : <select name="fsel">
<option value="someone@some.com" selected>someone@some.com</option>
<option value="sometwo@some.com">sometwo@some.com</option>
</select>
<br>
<input type="Submit" value="Send your feedback">
</form>
</BODY>
</HTML>
Success!