$(document).ready(function(){
var select_area = $("select[name=area_name]");
var select_province = $("select[name=province_name]");
// var select_city = $("select[name=city_name]");
select_area.get(0).options[0].text = "";
select_province.get(0).options[0].text = '';
// select_city.get(0).options[0].text = '';
select_area.bind("change",function(){
$.get("/data/getProvinceCity.do",{area_province:"area",value_name:$(this).val()},function(data,textStatus){
var str = "";
for(var i=0;i<data.length;i++){
str+="<option value='"+data[i].area_id+"'>"+data[i].province_name+"</option>";
}
select_province.html(str);
},"json");
//alert($(this).val());
});
});