Index: themes/trunk/thormx2016/js/dealerLocator.js =================================================================== diff -u -r686 -r754 --- themes/trunk/thormx2016/js/dealerLocator.js (.../dealerLocator.js) (revision 686) +++ themes/trunk/thormx2016/js/dealerLocator.js (.../dealerLocator.js) (revision 754) @@ -1101,14 +1101,14 @@ if (this.elements.cityStateRadio && this.elements.cityStateRadio.attr('checked')) { if (this.elements.city.length && this.elements.city.val() != "" && this.elements.city.val() !== 'City' && this.elements.state.length && this.elements.state.val() != "" && this.elements.state.val() != 'State') { - this.city = this.elements.city.val(); + this.city = encodeURIComponent(stripHTML(this.elements.city.val())); this.state = this.elements.state.val(); } else { errorMsg = 'Please define the city and state where you would like to search for dealers.'; } } else { if (this.elements.zip.val() != "" && this.elements.zip.val() !== 'Zip Code') { - this.zip = this.elements.zip.val(); + this.zip = encodeURIComponent(stripHTML(this.elements.zip.val())); } else { errorMsg = 'Please define the zip code where you would like to search for dealers.'; }