Skip to main content
Find a Dealer
801-609-2620
sales@rallytrailermfg.com
Hit enter to search or ESC to close
Close Search
0
Menu
Dealers
Become a Dealer
Find a Dealer
Our Trailers
Telecom Trailers
Gas Trailers
Energy Trailers
Videos
Articles
Request Quote
0
was successfully added to your cart.
Your cart is currently empty.
Close Menu
Dealers
Become a Dealer
Find a Dealer
Our Trailers
Telecom Trailers
Gas Trailers
Energy Trailers
Videos
Articles
Request Quote
Find a Dealer
801-609-2620
sales@rallytrailermfg.com
Login
Sign Up
Remember me
Forgot Password?
Sign in
I accept the
Terms of Service and Privacy Policy
Sign Up
Lost your password? Please enter your username or email address. You will receive a link to create a new password via email.
Email Reset Link
body::-webkit-scrollbar { width: 7px; } body::-webkit-scrollbar-track { border-radius: 10px; background: #f0f0f0; } body::-webkit-scrollbar-thumb { border-radius: 50px; background: #dfdbdb }
document.addEventListener('DOMContentLoaded', function () { const zipForm = document.getElementById('dealerZipForm'); if (zipForm) { zipForm.addEventListener('submit', function (e) { e.preventDefault(); const zip = parseInt(document.getElementById('zipInput').value, 10); const trailerName = encodeURIComponent(document.title); const dealerPages = [ { name: 'Rally Trailers MFG', url: 'https://rallytrailermfg.com/rally-trailer-manufacturing-quote-page/', ranges: [[84000, 86999], [89000, 89999], [90000, 96199]] }, { name: 'Elevated Sales', url: 'https://rallytrailermfg.com/elevated-sales-request-a-quote-page/', ranges: [[83200, 83999]] }, { name: 'Tel Quip', url: 'https://rallytrailermfg.com/tel-quip-request-a-quote-page/', ranges: [[75000, 79999], [66000, 67999], [73000, 74999], [71600, 72999]] }, { name: 'ABS Rent', url: 'https://rallytrailermfg.com/abs-rent-request-a-quote-page/', ranges: [[80000, 83199], [59000, 59999], [68000, 69999], [57000, 57999], [58000, 58899]] }, { name: 'Northwest Hydrovac', url: 'https://rallytrailermfg.com/northwest-hydrovac-request-a-quote-page/', ranges: [[97000, 97999], [98000, 99499], [99500, 99999], [96700, 96999]] }, { name: 'Plummettaz American Corp', url: 'https://rallytrailermfg.com/plummettaz-request-a-quote-page/', ranges: [[37000, 39999], [0, 36999]] } ]; let matchedURL = ''; for (let dealer of dealerPages) { for (let range of dealer.ranges) { if (zip >= range[0] && zip <= range[1]) { matchedURL = dealer.url; break; } } if (matchedURL) break; } if (matchedURL !== '') { const redirectURL = `${matchedURL}?trailer=${trailerName}`; console.log('Redirecting to:', redirectURL); window.location.href = redirectURL; } else { alert('ZIP code not recognized. Please contact us directly.'); } }); } });