<script>
function a(val){
for (var i =0; i<document.forms[0].cati.options.length; i++){
if (document.forms[0].cati.options[i].value == val){
document.forms[0].cati.options[i].selected = true;
break;
}
}
}
</script>
</head>
<body onload="a('02');">
<form name="tfrom">
<select name="cati">
  <option value="01">我</option>
  <option value="02">你</option>
  <option value="03">他</option>
</select></form>
</body>