Please note that the rates mentioned apply to the Melton suburb only. Additional costs may apply depending on your location. We always strive to accommodate your preferred lesson time, but this is not always possible due to scheduling constraints. Someone from our team will contact you shortly to confirm your booking and discuss further details.
function waitForBookingForm(callback, attempts = 0) {
const noteField = document.querySelector("textarea[name='note']");
const addressField = document.querySelector("input[name='address']");if (noteField || addressField) {
callback(noteField, addressField);
} else if (attempts < 20) {
setTimeout(() => waitForBookingForm(callback, attempts + 1), 300);
}
}document.addEventListener("DOMContentLoaded", function() {
waitForBookingForm(function(noteField, addressField) {
// Fix Note field
if (noteField) {
noteField.placeholder = "Enter pickup address (if different), preferred test centre, or any special instructions.";
noteField.closest('.bp-field-wrap').style.display = 'block';
}// Ensure Address field is visible
if (addressField && addressField.closest('.bp-field-wrap')) {
addressField.closest('.bp-field-wrap').style.display = 'block';
}
});
});