function loadCateogries (id) {
	if(id == 0) {
		loadMarks(0);
	}
	$.ajax({
		  url: BASE_URL + LANG + "/getcategories/"+id+ ".html",
		  timeout: function() {
			  
		  },
		  error: function() {
			  
		  },
		  beforeSend: function() {
		  },
		  success: function(data){
			$("#subFilterContainer").html(data);
		  }
	});
}

function loadMarks(id) {
	$.ajax({
		  url: BASE_URL + LANG + "/getmarks/"+id+ ".html",
		  timeout: function() {
			  
		  },
		  error: function() {
			  
		  },
		  beforeSend: function() {
		  },
		  success: function(data){
			$("#lastFilterContainer").html(data);
		  }
	});	
}



function loadProducts() {
	window.location = BASE_URL + LANG + "/getproducts/" + $("#filter_categories").val() + "/" + $("#subFilterSelect").val() + "/" + $("#lastProductsSelect").val() + ".html";
}
