I have the following html code drop-down list, with which I need to link some already designed reports
<label class="w3-text-teal"><b>Tipo de Reportes|</b>
<select name="Lista" class="w3-border">
<option value="saab">--Seleccionar--</option>
<option value="Ante" href="Reportes/ReportTecnico">Relacion de pqr Asociados a Tecnicos</option>
<option value="Ante" href="Reportes/pdf_generar.php">Informe General Estados pqr</option>
</select>
</label>
<br>
<br>
<button name="Generar" type="sumbit" onclick="">Generar Reporte</button>
I would like you to give me an idea of how to do it using the onclick event on the button