const allowedPincodes = ["700001", "700032", "700091"];
function checkPincode() {
let pin = document.getElementById("pincode").value;
if (allowedPincodes.includes(pin)) {
alert("Delivery available!");
} else {
alert("Sorry, not available.");
}
}
