Tuition

<div id="form-wrap" style="max-width:800px;margin:auto">
<iframe id="tuitionForm"
src="https://www.livingwd.org/Lwcc_wsomm_tuition.aspx"
title="Tuition Form"
width="100%" height="1000" frameborder="0" style="border:0; display:block; min-height:400px;"
loading="lazy"></iframe>
</div>

<script>
// Listen for height messages from the form origin
window.addEventListener("message", function (e) {
// SECURITY: update this to the exact origin of your form
const allowedOrigin = "https://www.livingwd.org";
if (e.origin !== allowedOrigin) return;

const data = e.data || {};
if (data.type === "resize-iframe" && typeof data.height === "number") {
document.getElementById("tuitionForm").style.height = data.height + "px";
}
});
</script>