<td height="30">&nbsp;</td>
            <td class="textoform">&nbsp;</td>
            <td class="textoform">&nbsp;</td>
            <td class="textoform">&nbsp;</td>
            <td class="textoform">&nbsp;</td>
            <td class="textoform">&nbsp;</td>
            <td class="textoform">&nbsp;</td>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td height="30">&nbsp;</td>
            <td class="textoform">Tipo Vehículo</td>
            <td class="textoform">:</td>
            <td class="textoform"><label>
			<?php 
echo elvehiculoes($tvehiculo);
?>

            </label></td>
            <td class="textoform">&nbsp;</td>
            <td class="textoform">&nbsp;</td>
            <td class="textoform">&nbsp;</td>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td height="30">&nbsp;</td>
            <td class="textoform">Valor por día</td>
            <td class="textoform">:</td>
            <td class="textoform"><input name="valor" type="text" id="valor" size="10" value="<?php 
echo $valor;
?>
                <th width="25%">Valor por día</th>
                <th width="25%">Actualizar</th>
              </tr>
              </thead>
              <tbody class="to"> 
              <?php 
while ($aux = pg_fetch_assoc($stat)) {
    $cod = $aux[cod_sobreestadia];
    $tvehiculo = $aux[cod_tipo_vehiculo];
    $valor = $aux[valor];
    if ($i % 2 == 0) {
        echo "<tr>";
    } else {
        echo "<tr class='odd'>";
    }
    echo "<td>" . elvehiculoes($tvehiculo) . "</td>";
    echo "<td>" . $valor . "</td>";
    echo "<td><a href='operaciones.php?op=ese2&cod=" . $cod . "'><img src='../images/edit.png' width='18' height='17' /></a> </td>";
    echo "</tr>";
    $i = $i + 1;
}
?>
              </tbody>
            </table>
            <?php 
//muestro los distintos índices de las páginas, si es que hay varias páginas
if ($total_paginas > 1) {
    if ($pagina == 1) {
        $prev = 1;
    } else {
        $prev = $pagina - 1;