
		
function updateCounties() {
    dijit.byId('Property_County').store = new dojo.data.ItemFileReadStore({ url: baseUrl+"api/counties/?Any=true&Country_Id=" + dijit.byId("Property_Country").value });
    };

function updateTowns() {
    dijit.byId('Property_Town').store = new dojo.data.ItemFileReadStore({ url: baseUrl+"api/towns/?Any=true&County_Id=" + dijit.byId("Property_County").value });
    };
