$(document).ready(function() {
	$("#selectDeparmentsSelectBox").change(function() {
		var selectedValue = $("#selectDeparmentsSelectBox option:selected").val();
		if(selectedValue != "default") {
			window.location.href= selectedValue;
		}
	});
});
