I have a simple drop down menu on a form:
<form id="form1" name="form1" method="post" action="">
<select name="ddlSelect" id="ddlSelect">
<option value="">Select</option>
<option value="-1">Yes</option>
<option value="0">No</option>
</select>
</form>
I would like to convert the values for each option to display in an email using a java script function but am not sure how to do this. Can anyone help? Ex. -1 = Yes, 0 = No
"-1"to the number-1(as per the two answers so far)? If so, what does that have to do with emailing?