<select name="sel" id="sel">
<option>1</option>
<option>2</option>
</select>
<script>
var se=document.getElementById("sel");
se.onchange=new Function("alert('aaa');");
</script>