<td width="954">

    <table align="center" border="0" width="954">
        <tr></tr>
        <tr><td>
    <h3 align="center" color="#FFCC66"><font size="3px">Consulta de Oficinas</font></h3>
    <form name="form1" action="../vista/usuoficmodiflist.php" method="get">
    <label class="filtroTexto" align="center" onclick="onOff_filtro(document.getElementById('filtros'));">Filtros</label> 
    <div id="filtros" style="display: none;">
    <table class="filtro" align="center" border="0" width="350">
    <tr> 
        <td colspan="2"><div align="left"><b><I>Población:</I></b></div></td>
         <td align="left" colspan = "3">
            <?php 
//extraigo el listado de departamentos
$listado = $clsCNUsu->ListadoPoblacionesOficinas();
$html = '<select name="strPoblacion" class="textbox1">';
$html = $html . '<option value=""></option>';
if (is_array($listado)) {
    for ($i = 0; $i < count($listado); $i++) {
        $html = $html . '<option value="' . $listado[$i]['strPoblacion'] . '">' . $listado[$i]['strPoblacion'] . '</option>';
    }
}
$html = $html . '</select>';
echo $html;
?>
 
         </td>
    </tr>
    <tr> 
         <td colspan="2"><div align="left"><b><I>Provincia:</I></b></div></td>