Di sicuro la spiegazioni non sono delle più chiare, premesso questo ho elaborato questo che dovrebbe fare quello che chiedi o meglio quello che ho capito.
codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento senza titolo</title>
<script type="text/javascript" language="javascript">
function selectImage(Val){
	document.getElementById("SelectImages").selectedIndex=Val;
}
</script>
</head>

<body>
<form action="" method="post" name="modulo">
  <table width="100%" border="0" cellspacing="0" cellpadding="2">
    <tr>
      <td width="26%" rowspan="3"><select name="SelectImages" id="SelectImages">
        <option value="0">Seleziona</option>
        <option value="1">Percorso Image 1</option>
        <option value="2">Percorso Image 2</option>
        <option value="3">Percorso Image 3</option>
                        </select></td>
      <td width="74%">Image 1 </td>
    </tr>
    <tr>
      <td>Image 2 </td>
    </tr>
    <tr>
      <td>Image 3 </td>
    </tr>
  </table>
</form>
</body>
</html>