function changeDepartment (baseUrl) {
  
  var dropDown = document.getElementById('departmentsDropDown');
  var deptId   = dropDown.options[dropDown.selectedIndex].getAttribute('value');
  
  if(deptId > 0){
    var url      = baseUrl + deptId;
    window.location.href = url;
  }
}
