function setaddress(code,id){
var text=$("#"+id).attr("msg");
var nextSelect=$("#"+id).next("select[name='adrid[]']");
nextSelect.html('');
$.post("/AreaCity/setaddr.html",{code:code,text:text},function(res){
//$("#"+id).attr("disabled",false);
console.log(code);
$("#"+id).html(res);
},'text');
}