Need Nationwide Service?
We manage service of process across the USA through our trusted network of vetted partners.
One point of contact. Zero headaches.
function checkZip() {
var input = document.getElementById(“zipInput”).value.trim();
var resultDiv = document.getElementById(“search-result”);
// VERIFIED LAKE COUNTY ZIP CODES
var zone1 = [“95453”, “95435”]; // Lakeport, Finley
var zone2 = [“95451”, “95422”, “95464”, “95485”, “95458”, “95423”, “95467”]; // Kelseyville, Clearlake, Nice…
var zone3 = [“95461”, “95426”, “95457”, “95443”, “95493”]; // Middletown, Cobb, Lower Lake…
if (zone1.includes(input)) {
resultDiv.innerHTML = “✅ Zone 1 (Local): $FlatRate“;
} else if (zone2.includes(input)) {
resultDiv.innerHTML = “✅ Zone 2 (Metro): $HigherRate“;
} else if (zone3.includes(input)) {
resultDiv.innerHTML = “⚠️ Zone 3 (Rural): Call for Quote“;
} else if (input.length === 5 && !isNaN(input)) {
resultDiv.innerHTML = “We don’t have this zip locally. We can serve this via our Nationwide Network.“;
} else {
resultDiv.innerHTML = “Please enter a valid 5-digit Zip Code.“;
}
}