Received.

We've received your request for a home valuation and will be in touch with you shortly. Should you need to speek with an agent immediately please give us a call at 218 363-6100

document.querySelectorAll('#estimate_form select').forEach(select => { select.addEventListener('change', function () { if (this.value !== '' && this.value !== 'none' && this.value !== 'None') { this.style.borderLeftColor = '#28a745'; // green color for selected } else { this.style.borderLeftColor = '#e74c3c'; // default red color for required } }); });