Not sure what you're last post meant... but hopefully this will be of some help...
----- pagenumberone.html -----------
<form name="formname" method="get" action="redirect.php">
<select name="redirect" onchange="javascript:document.formname.submit()">
<?php
$result = mysql_query ("SELECT href, country FROM whatever WHERE country = 2");
while ($array = mysql_fetch_array ($result)) {
print ("<option value=\"" . $array['href'] . "\">" . $array['country'] . "</option>
</select>
</form>
------ end pagenumberone.html --------
------ redirect.php --------------------------
<?php
if ($_GET['href']) {
header ("Location: " . $_GET['href']);
exit;
?>
--------- end of redirect.php =-----------------
Is that what you mean to do?