<html xmlns="http://www.w3.org/1999/xhtml">
<head></head><body>
<select name="select" id="sel01"   onchange=select_change(this.value)>   
<option value="101">白菜101   </option>   
<option value="102">  </option>   
<option value="203">狗狗203   </option>   
</select>
<script>
function select_change(a){
alert(a);
}</script>
</body>
</html>