PHP Code:
<html>
<body>
<script langauge='javascript'>
<!--
function showavimage(theURL) {
document.images.showimage.src=theURL+document.creator.imagelist.options[document.creator.imagelist.selectedIndex].value;
}
//-->
</script>
<form action="script.php" method="POST" name="creator">
<select name='imagelist' onchange="showaimage('http://www.link.com/images/')">
<option value='01.gif'>01</option>
<option value='02.gif'>02</option>
<option value='03.gif'>03</option>
</select>
<img src="http://www.link.com/images/default.gif" name="showimage" width="70" height="70" border="0" hspace="15">
</form>
</body>
</html>