Hola de nuevo.
Lo que te puse era solo un ejemplo, puedes añadir todos los checkbox que necesites:
Código:
<a href="#" id="pepe">Enlace</a>
<input type="checkbox" onclick="document.getElementById('pepe').href='pagina1.html'" />
<input type="checkbox" onclick="document.getElementById('pepe').href='pagina2.html'" />
<input type="checkbox" onclick="document.getElementById('pepe').href='pagina7.html'" />
Con un combo sería asi:
Código:
<select onchange="document.getElementById('pepe').href=this.value">
<option value="pagina1.html">Pag. 1</option>
<option value="pagina2.html">Pag. 2</option>
Saludos,