可以用myselect.options[myselect.selectedIndex].innerHTML取到,怎么传是你的事啦,呵呵~~~~<html>
<head>
<script language="javascript">
function fun()
{
    alert(myselect.options[myselect.selectedIndex].innerHTML);
}
</script>
</head>
<body>
<SELECT name="myselect" onChange="fun()">
   <option value="">  </option>
   <option value="">AA</option>
   <option value="">BB</option>
   <option value="">CC</option>
</SELECT>
</body>
</html>