Is having a local director necessary for a Singapore company?

document.addEventListener("DOMContentLoaded", function () { const items = document.querySelectorAll(".rank-math-list-item"); items.forEach(item => { const question = item.querySelector(".rank-math-question"); const answer = item.querySelector(".rank-math-answer"); if (question && answer) { answer.style.display = "none"; question.style.cursor = "pointer"; question.addEventListener("click", () => { const isOpen = answer.style.display === "block"; document.querySelectorAll(".rank-math-answer").forEach(ans => ans.style.display = "none"); document.querySelectorAll(".rank-math-question").forEach(q => q.classList.remove("active-question")); if (!isOpen) { answer.style.display = "block"; question.classList.add("active-question"); } }); } }); });