Доброе время суток столкнулся с таким вопросам как сделать авто переход на select. У меня есть регионы. мне нужно не наживая на кнопку перезагружать страницу, что бы были только определенный выбранный регион
скриншот
<script>
function hrefCity(city){
document.location.htef = "/city.php?c=" + city;
}
</script>
<select name="city" onchange="hrefCity(this.value)">
<option value="ny">NY</option>
<option value="la">LA</option>
</select>
if (isset($_POST['region']))
{
setcookie("region", $_POST['region'], time()+$tm);
$x = $_SERVER['HTTP_REFERER'];
if(isset($_SERVER['HTTP_REFERER']))
{
header("Location: ".$x);
}
else {refresh("index.php");}
}
$openregion = "<center><form action='".DIR."refresh.php' method='post'><select name='region' size='1' class='region'>";
$closeregion = "<br><input type='submit' value='".$locale[75]."' class='region_submit'></form></center>";
$openformsearch = "<script language='JavaScript'>
<!--
function alterNate(elm){
if (!elm.base) elm.base = elm.value
if (elm.value == elm.base) elm.value = '';
else if (elm.value == '') elm.value = elm.base;
}
// -->
</script>
<center><form action='".get_q("","","",false,false,true)."' method='post'>
<input size='20' name='search' type='text' class='region' onblur='alterNate(this)' onfocus='alterNate(this)' value='".$locale[77]."'>
<br>";
$closeformsearch = "<input type='submit' value='".$locale[76]."' class='region_submit'></form></center>";