При нажатии на опцию селекта нужно изменить опции другого селекта
Вот джава:
$('.reg_country_option').click(function(){
var select = $("#reg_country").val();
$.ajax({
type:'POST',
url:"../func/city_option.php",
data:"reg_country="+select,
success:function(html){
$('#reg_city').html(html);
}
});
});
Вот вызывающяяся РНР
<?php
if($_SERVER['REQUEST_METHOD']=='POST'){
if($_SERVER['SERVER_NAME']=='asdf.ru'){
header('Content-Type: text/html; charset=utf-8');
session_start();
include("db.php");
$reg_country = $_POST['reg_country'];
echo "<option value='1'>$reg_country</option>";
}
}
?>
не могу понять в чем проблема?