<script>
function options(){
alert("asdfasdf");
}
</script>
<select type="selectbox" name="crPaymentOption" id ="crPaymentOption"onchange="options()"/>
<option selected="" value="--">--</option>
<option value="Check">Check</option>
<option value="Credit Card">Credit Card</option>
<option value="Cash">Cash</option>
</select>
The alert is not firing when i change the options of the select drop down. Can anyone help me on this??