I'm having a drop down with onChange event which will call the javascript method.
but when I change to some value and clicking reset , its reset to orignial value, but the onChange javascript event is not calling.
<select onChange="method1()">
<option>....
</select>
<input type="reset" value="reset" />
After click the reset button, the value is setting to old value but the onChange event is not working...