
function createDomoAdd(add_zone_id){
	
	if(typeof(MarketTypeId) == 'undefined'){
		MarketTypeId = null;
	}
	if(typeof(OrderTypeId) == 'undefined'){
		OrderTypeId = null;
	}
	if(typeof(RealEstateTypeId) == 'undefined'){
		RealEstateTypeId = null;
	}
	if(typeof(ProvinceId) == 'undefined'){
		ProvinceId = null;
	}
	if(typeof(CityId) == 'undefined'){
		CityId = null;
	}
	if(typeof(DistrictId) == 'undefined'){
		DistrictId = null;
	}	
				
	
    $.ajax({
        url: ajaxUrl + 'json/adds/get-adds',
        type: 'POST',
        //data: "zone_id="+add_zone_id,
		data: {
                zone_id: add_zone_id,
                banner_info: 'true',
                acl_market_type_id: MarketTypeId,
                acl_order_type_id: OrderTypeId,
                acl_realestate_type_id: RealEstateTypeId,
                acl_province_id: ProvinceId,
                acl_city_id: CityId,
                acl_quarter_id: DistrictId
        },        
        success: function(result) {
                Data = json_parse(result);
                $('#addArea'+add_zone_id).html(Data);
                
        }
 
    });

}


