function destinos(origem) {
   var rst = fill_select_from_json("destinos.php?o="+origem,"destino_sel",["DESCRICAO"],["DESCRICAO"]);
   if(rst<1) 
      alert("Sem destinos encontrados para "+origem);
}

function alternar_percurso(id) {
   invert_display(id);
   var txt = get_element(id+"txt");
   txt.innerHTML = /^ver/i.test(txt.innerHTML) ? "Esconder trajetos" : "Ver trajetos";
}

