Contact

Want to Know more? Get in touch with us!

At MSA Motors, we value your feedback and are here to assist you with all your automotive needs. Whether you have questions about our services, need support, or want to provide feedback, our team is ready to help.

phone
Phone Number
placeholder
Address

Vanijiya Nagar, Auto Nagar, Kurnool – Hyd Highway

Vehicle added!
The vehicle is already in the wishlist!
document.addEventListener('DOMContentLoaded', function () { // Get the select element and the input field const selectField = document.querySelector('select[name="Other"]'); // Replace with your select field name const otherInput = document.querySelector('input[name="Other"]'); // Replace with your input field name // Add an event listener for the select field selectField.addEventListener('change', function () { if (this.value === 'Other') { // Check if 'Other' is selected otherInput.disabled = false; // Enable the input field } else { otherInput.disabled = true; // Disable the input field otherInput.value = ''; // Clear the input field } }); });