jQuery(document).ready(function(){//SELECT CHANGE	jQuery('#scountry').change(function(){	jQuery.post('/placelist.php', {target: 'region',targetid: document.place.country.value,name:'addr[region]',id:'sregion'}, function(text) {    jQuery('#sregion').html(text);    jQuery('#scity').html('<option value="null" disabled selected>Выберите регион</option>');    return false;    }); 	});	jQuery('#sregion').change(function(){	jQuery.post('/placelist.php', {target: 'city',targetid: document.place.region.value,name:'addr[city]',id:'scity'}, function(text) {	jQuery('#scity').html(text);    return false;    });    });});