document.addEventListener("DOMContentLoaded", function () {
setInterval(function () {
document.querySelectorAll("option").forEach(function (option)
if (option.textContent.trim() === "No Found") {
option.textContent = "No hay datos disponibles"; }
});
}, 1000);
});