window.onload=function() {
document.getElementById("zipFinder").onfocus=function() {
 this.value="";
 }
}

function gotoQuickLink(theIndexes){
i = 0;
while(i<=theIndexes.length) {
if (theIndexes[i].selected) {
window.location.href= theIndexes[i].value;
//alert(theIndexes[i].value)
}
i++;
}
}