Tengo este combo:
Código PHP:
  
<select name="municipio">
          <option>- Seleccione un municipio</option>
           <?php $sqla="select municipio
                    from patrimonios_municipios
            where zona='".$_GET["zona"]."'";
    $resulta=mysql_query($sqla, $link)or die(mysql_error());
    while($rowa=mysql_fetch_array($resulta)){
    $municipio=$rowa["municipio"];
            ?>
          <option value="<?php echo $municipio; ?>"><?php echo $municipio; ?></option>
          <?php } ?>
        </select>   Código HTML:
 ><iframe name="datos" align=top marginwidth=0 marginheight=0 src="tablas_municipios.php?municipio=<?php echo $_GET["municipio"];?>" scrolling="no" frameborder=0 width=682 height=358></iframe>
 
