function init() {
  if (document.getElementById("año")) {
    document.getElementById("año").onchange =
    function () {
      document.getElementById("buscar").value = "actualizar";
      document.getElementById("mes").value = "0";
      document.getElementById("not_historico").submit();
    }
  }
}

window.onload = init;
