<html xmlns="http://www.w3.org/1999/xhtml">
<head >
    <title>无标题页</title>
 
 </head>
<body>
<script>
function bychange(i) 
{
  document.myform.img1.src=document.myform.sel.options[i].value+'.jpg'; 

</script> 
<body> 
<form name="myform"> 
  <select name="sel" onChange="bychange(this.options.selectedIndex)"> 
    <option value="0">1</option> 
    <option value="1">2 </option> 
  </select> 
<img src="0.jpg" name="img1"> 
</body></html>