Upload PDF
How Did You Hear About Us?
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
We work across the South Bay in Manhattan Beach, Hermosa Beach, Redondo Beach and Palos Verdes.
For sales or service, please call or email our local team:

Get In Touch

Contact our team for an initial consultation.

Upload PDF
How Did You Hear About Us?
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
/* Fix checkbox values in form */ document.addEventListener('DOMContentLoaded', function () { var form = document.querySelector('#quote-form'); //form's ID if (!form) return; form.addEventListener('submit', function () { // collect only the checkboxes (name="services") var checked = Array.from(form.querySelectorAll('input[type="checkbox"]:checked')); // build an array of human-readable labels/values var labels = checked.map(function(cb) { // 1. Prefer data-value if present if (cb.dataset && cb.dataset.value) return cb.dataset.value.trim(); // 2. Fallback: use value (if not "on"/"true") if (cb.value && cb.value !== 'on' && cb.value !== 'true') return cb.value.trim(); // 3. Last fallback: get the label text var id = cb.id || ''; var lab = document.querySelector('label[for="'+id+'"]'); if (lab && lab.textContent.trim()) return lab.textContent.trim(); return ''; }).filter(Boolean); // write the combined string into the hidden field var hidden = form.querySelector('#selected_interest'); if (hidden) hidden.value = labels.join(', '); }); });