
/* - countystate.js - */
function toggleCounties(id) {
  li = document.getElementById(id);
  if (li.className == 'list-select') {
    li.className = 'list-down';
  }
  else if (li.className == 'list-down') {
    li.className = 'list-select';
  }
}


