OnChange发生的时候是在客户端上,而你的php程序是运行在服务器上,所以onChange()时,调用一个php函数是不可能的。你可以做的是跳转到一个页面,或者提交。例如:
<SELECT SIZE=1 NAME=SELECTCTRL OnChange='OnSelItem()'>
....................
</SELECT><script>
function OnSelItem()
{
    var url= "你要跳转的网页地址";
    window.location=link;
}
</script>