event of select in javascript code example
Example: js html textbox on change
<!--
You can use any of the following:
onkeydown, onkeyup or onchange
-->
<input type="text" onkeydown="keydownFunction()"
onkeyup="keyupFunction()" onchange="changeFunction()">