function select_monthlyarchive(selection) {
  if (selection.selectedIndex == -1) return;
  var selection_option = selection.options[selection.selectedIndex];
  if (selection_option.value == "") {
    selection.selectedIndex = 0;
    return;
  }
  if (selection_option && selection_option.value)
    location.href = selection.value;
}
