//This function removes all options from a listbox function removeAll(listbox) { var i; for(i=listbox.options.length-1;i>=0;i--) { listbox.remove(i); } } //This function adds an option to a listbox function addOption(listbox,text,value) { var optn = document.createElement("OPTION"); optn.text = text; optn.value = value; listbox.options.add(optn); } function ChangeCity() { removeAll(document.getElementById('type')); document.getElementById('type').name = "city"; addOption(document.getElementById('type'), "- Select Town -",""); addOption(document.getElementById('type'), "Amawalk", "Amawalk"); addOption(document.getElementById('type'), "Amenia", "Amenia"); addOption(document.getElementById('type'), "Ancram", "Ancram"); addOption(document.getElementById('type'), "Ancramdale", "Ancramdale"); addOption(document.getElementById('type'), "Ardsley", "Ardsley"); addOption(document.getElementById('type'), "Ardsley-on-Hudson", "Ardsley-on-Hudson"); addOption(document.getElementById('type'), "Armonk", "Armonk"); addOption(document.getElementById('type'), "Austerlitz", "Austerlitz"); addOption(document.getElementById('type'), "Baldwin Place", "Baldwin Place"); addOption(document.getElementById('type'), "Bangall", "Bangall"); addOption(document.getElementById('type'), "Beacon", "Beacon"); addOption(document.getElementById('type'), "Bedford", "Bedford"); addOption(document.getElementById('type'), "Bedford Corners", "Bedford Corners"); addOption(document.getElementById('type'), "Bedford Hills", "Bedford Hills"); addOption(document.getElementById('type'), "Billings", "Billings"); addOption(document.getElementById('type'), "Blooming Grove", "Blooming Grove"); addOption(document.getElementById('type'), "Brewster", "Brewster"); addOption(document.getElementById('type'), "Briarcliff Manor", "Briarcliff Manor"); addOption(document.getElementById('type'), "Bronx", "Bronx"); addOption(document.getElementById('type'), "Bronxville", "Bronxville"); addOption(document.getElementById('type'), "Brookfield", "Brookfield"); addOption(document.getElementById('type'), "Buchanan", "Buchanan"); addOption(document.getElementById('type'), "Cambria Heights", "Cambria Heights"); addOption(document.getElementById('type'), "Canaan", "Canaan"); addOption(document.getElementById('type'), "Carmel", "Carmel"); addOption(document.getElementById('type'), "Chappaqua", "Chappaqua"); addOption(document.getElementById('type'), "Chelsea", "Chelsea"); addOption(document.getElementById('type'), "City Island", "City Island"); addOption(document.getElementById('type'), "Clinton Corners", "Clinton Corners"); addOption(document.getElementById('type'), "Clintondale", "Clintondale"); addOption(document.getElementById('type'), "Cold Spring", "Cold Spring"); addOption(document.getElementById('type'), "Copake", "Copake"); addOption(document.getElementById('type'), "Cornwall", "Cornwall"); addOption(document.getElementById('type'), "Cornwall on Hudson", "Cornwall on Hudson"); addOption(document.getElementById('type'), "Cortlandt Manor", "Cortlandt Manor"); addOption(document.getElementById('type'), "Cos Cob", "Cos Cob"); addOption(document.getElementById('type'), "Coxsackie", "Coxsackie"); addOption(document.getElementById('type'), "Crompond", "Crompond"); addOption(document.getElementById('type'), "Cross River", "Cross River"); addOption(document.getElementById('type'), "Croton Falls", "Croton Falls"); addOption(document.getElementById('type'), "Croton-on-Hudson", "Croton-on-Hudson"); addOption(document.getElementById('type'), "Cuddebackville", "Cuddebackville"); addOption(document.getElementById('type'), "Danbury", "Danbury"); addOption(document.getElementById('type'), "Dobbs Ferry", "Dobbs Ferry"); addOption(document.getElementById('type'), "Dover Plains", "Dover Plains"); addOption(document.getElementById('type'), "East Elmhurst", "East Elmhurst"); addOption(document.getElementById('type'), "Eastchester", "Eastchester"); addOption(document.getElementById('type'), "Elizaville", "Elizaville"); addOption(document.getElementById('type'), "Elmhurst", "Elmhurst"); addOption(document.getElementById('type'), "Elmsford", "Elmsford"); addOption(document.getElementById('type'), "Esopus", "Esopus"); addOption(document.getElementById('type'), "Fallsburg", "Fallsburg"); addOption(document.getElementById('type'), "Fishkill", "Fishkill"); addOption(document.getElementById('type'), "Forest Hills", "Forest Hills"); addOption(document.getElementById('type'), "Franklin Square", "Franklin Square"); addOption(document.getElementById('type'), "Freeport", "Freeport"); addOption(document.getElementById('type'), "Gardiner", "Gardiner"); addOption(document.getElementById('type'), "Garrison", "Garrison"); addOption(document.getElementById('type'), "Ghent", "Ghent"); addOption(document.getElementById('type'), "Glens Falls", "Glens Falls"); addOption(document.getElementById('type'), "Glenville", "Glenville"); addOption(document.getElementById('type'), "Goldens Bridge", "Goldens Bridge"); addOption(document.getElementById('type'), "Goshen", "Goshen"); addOption(document.getElementById('type'), "Granite Springs", "Granite Springs"); addOption(document.getElementById('type'), "Greenville", "Greenville"); addOption(document.getElementById('type'), "Greenwich", "Greenwich"); addOption(document.getElementById('type'), "Harriman", "Harriman"); addOption(document.getElementById('type'), "Harrison", "Harrison"); addOption(document.getElementById('type'), "Hartsdale", "Hartsdale"); addOption(document.getElementById('type'), "Hastings-on-Hudson", "Hastings-on-Hudson"); addOption(document.getElementById('type'), "Haverstraw", "Haverstraw"); addOption(document.getElementById('type'), "Hawthorne", "Hawthorne"); addOption(document.getElementById('type'), "Hempstead", "Hempstead"); addOption(document.getElementById('type'), "Highland", "Highland"); addOption(document.getElementById('type'), "Highland Mills", "Highland Mills"); addOption(document.getElementById('type'), "Hillsdale", "Hillsdale"); addOption(document.getElementById('type'), "Holmes", "Holmes"); addOption(document.getElementById('type'), "Hopewell Junction", "Hopewell Junction"); addOption(document.getElementById('type'), "Howard Beach", "Howard Beach"); addOption(document.getElementById('type'), "Hudson", "Hudson"); addOption(document.getElementById('type'), "Hughsonville", "Hughsonville"); addOption(document.getElementById('type'), "Hurley", "Hurley"); addOption(document.getElementById('type'), "Hyde Park", "Hyde Park"); addOption(document.getElementById('type'), "Irving", "Irving"); addOption(document.getElementById('type'), "Irvington", "Irvington"); addOption(document.getElementById('type'), "Jackson Heights", "Jackson Heights"); addOption(document.getElementById('type'), "Jamaica", "Jamaica"); addOption(document.getElementById('type'), "Jefferson Valley", "Jefferson Valley"); addOption(document.getElementById('type'), "Katonah", "Katonah"); addOption(document.getElementById('type'), "Kinderhook", "Kinderhook"); addOption(document.getElementById('type'), "Kingston", "Kingston"); addOption(document.getElementById('type'), "Lagrangeville", "Lagrangeville"); addOption(document.getElementById('type'), "Lake Peekskill", "Lake Peekskill"); addOption(document.getElementById('type'), "Larchmont", "Larchmont"); addOption(document.getElementById('type'), "Liberty", "Liberty"); addOption(document.getElementById('type'), "Lincolndale", "Lincolndale"); addOption(document.getElementById('type'), "Livingston", "Livingston"); addOption(document.getElementById('type'), "Lloyd", "Lloyd"); addOption(document.getElementById('type'), "Mahopac", "Mahopac"); addOption(document.getElementById('type'), "Malden on Hudson", "Malden on Hudson"); addOption(document.getElementById('type'), "Mamaroneck", "Mamaroneck"); addOption(document.getElementById('type'), "Marlboro", "Marlboro"); addOption(document.getElementById('type'), "Maspeth", "Maspeth"); addOption(document.getElementById('type'), "Maybrook", "Maybrook"); addOption(document.getElementById('type'), "Meriden", "Meriden"); addOption(document.getElementById('type'), "Middle Village", "Middle Village"); addOption(document.getElementById('type'), "Middletown", "Middletown"); addOption(document.getElementById('type'), "Millbrook", "Millbrook"); addOption(document.getElementById('type'), "Millerton", "Millerton"); addOption(document.getElementById('type'), "Millwood", "Millwood"); addOption(document.getElementById('type'), "Milton", "Milton"); addOption(document.getElementById('type'), "Mohegan Lake", "Mohegan Lake"); addOption(document.getElementById('type'), "Monroe", "Monroe"); addOption(document.getElementById('type'), "Montgomery", "Montgomery"); addOption(document.getElementById('type'), "Montrose", "Montrose"); addOption(document.getElementById('type'), "Mount Kisco", "Mount Kisco"); addOption(document.getElementById('type'), "Mount Vernon", "Mount Vernon"); addOption(document.getElementById('type'), "Nanuet", "Nanuet"); addOption(document.getElementById('type'), "New Canaan", "New Canaan"); addOption(document.getElementById('type'), "New Fairfield", "New Fairfield"); addOption(document.getElementById('type'), "New Milford", "New Milford"); addOption(document.getElementById('type'), "New Rochelle", "New Rochelle"); addOption(document.getElementById('type'), "New Windsor", "New Windsor"); addOption(document.getElementById('type'), "New York", "New York"); addOption(document.getElementById('type'), "Newtown", "Newtown"); addOption(document.getElementById('type'), "North Salem", "North Salem"); addOption(document.getElementById('type'), "Nyack", "Nyack"); addOption(document.getElementById('type'), "Ossining", "Ossining"); addOption(document.getElementById('type'), "Patterson", "Patterson"); addOption(document.getElementById('type'), "Pawling", "Pawling"); addOption(document.getElementById('type'), "Pearl River", "Pearl River"); addOption(document.getElementById('type'), "Peekskill", "Peekskill"); addOption(document.getElementById('type'), "Pelham", "Pelham"); addOption(document.getElementById('type'), "Piermont", "Piermont"); addOption(document.getElementById('type'), "Pine Plains", "Pine Plains"); addOption(document.getElementById('type'), "Plattekill", "Plattekill"); addOption(document.getElementById('type'), "Pleasant Valley", "Pleasant Valley"); addOption(document.getElementById('type'), "Pleasantville", "Pleasantville"); addOption(document.getElementById('type'), "Port Chester", "Port Chester"); addOption(document.getElementById('type'), "Port Ewen", "Port Ewen"); addOption(document.getElementById('type'), "Port Jervis", "Port Jervis"); addOption(document.getElementById('type'), "Poughkeepsie", "Poughkeepsie"); addOption(document.getElementById('type'), "Poughquag", "Poughquag"); addOption(document.getElementById('type'), "Pound Ridge", "Pound Ridge"); addOption(document.getElementById('type'), "Purchase", "Purchase"); addOption(document.getElementById('type'), "Purdys", "Purdys"); addOption(document.getElementById('type'), "Putnam Valley", "Putnam Valley"); addOption(document.getElementById('type'), "Red Hook", "Red Hook"); addOption(document.getElementById('type'), "Redding", "Redding"); addOption(document.getElementById('type'), "Rhinebeck", "Rhinebeck"); addOption(document.getElementById('type'), "Ridgefield", "Ridgefield"); addOption(document.getElementById('type'), "Riverdale", "Riverdale"); addOption(document.getElementById('type'), "Riverside", "Riverside"); addOption(document.getElementById('type'), "Rosedale", "Rosedale"); addOption(document.getElementById('type'), "Rosendale", "Rosendale"); addOption(document.getElementById('type'), "Roslyn Heights", "Roslyn Heights"); addOption(document.getElementById('type'), "Rye", "Rye"); addOption(document.getElementById('type'), "Rye Brook", "Rye Brook"); addOption(document.getElementById('type'), "Sag Harbor", "Sag Harbor"); addOption(document.getElementById('type'), "Saint Albans", "Saint Albans"); addOption(document.getElementById('type'), "Salt Point", "Salt Point"); addOption(document.getElementById('type'), "Saugerties", "Saugerties"); addOption(document.getElementById('type'), "Scarborough", "Scarborough"); addOption(document.getElementById('type'), "Scarsdale", "Scarsdale"); addOption(document.getElementById('type'), "Shenorock", "Shenorock"); addOption(document.getElementById('type'), "Shirley", "Shirley"); addOption(document.getElementById('type'), "Shrub Oak", "Shrub Oak"); addOption(document.getElementById('type'), "Sleepy Hollow", "Sleepy Hollow"); addOption(document.getElementById('type'), "Sloatsburg", "Sloatsburg"); addOption(document.getElementById('type'), "Somers", "Somers"); addOption(document.getElementById('type'), "South Salem", "South Salem"); addOption(document.getElementById('type'), "Southbury", "Southbury"); addOption(document.getElementById('type'), "Springfield Gardens", "Springfield Gardens"); addOption(document.getElementById('type'), "Staatsburg", "Staatsburg"); addOption(document.getElementById('type'), "Stanfordville", "Stanfordville"); addOption(document.getElementById('type'), "Staten Island", "Staten Island"); addOption(document.getElementById('type'), "Stephentown", "Stephentown"); addOption(document.getElementById('type'), "Stormville", "Stormville"); addOption(document.getElementById('type'), "Stratford", "Stratford"); addOption(document.getElementById('type'), "Suffern", "Suffern"); addOption(document.getElementById('type'), "Tappan", "Tappan"); addOption(document.getElementById('type'), "Tarrytown", "Tarrytown"); addOption(document.getElementById('type'), "Thornwood", "Thornwood"); addOption(document.getElementById('type'), "Tivoli", "Tivoli"); addOption(document.getElementById('type'), "Tuckahoe", "Tuckahoe"); addOption(document.getElementById('type'), "Valhalla", "Valhalla"); addOption(document.getElementById('type'), "Valley Cottage", "Valley Cottage"); addOption(document.getElementById('type'), "Verbank", "Verbank"); addOption(document.getElementById('type'), "Verplanck", "Verplanck"); addOption(document.getElementById('type'), "Waccabuc", "Waccabuc"); addOption(document.getElementById('type'), "Walden", "Walden"); addOption(document.getElementById('type'), "Wappingers Falls", "Wappingers Falls"); addOption(document.getElementById('type'), "Warwick", "Warwick"); addOption(document.getElementById('type'), "Wassaic", "Wassaic"); addOption(document.getElementById('type'), "Waterbury", "Waterbury"); addOption(document.getElementById('type'), "West Harrison", "West Harrison"); addOption(document.getElementById('type'), "West Park", "West Park"); addOption(document.getElementById('type'), "Weston", "Weston"); addOption(document.getElementById('type'), "Westport", "Westport"); addOption(document.getElementById('type'), "White Plains", "White Plains"); addOption(document.getElementById('type'), "Whitestone", "Whitestone"); addOption(document.getElementById('type'), "Wingdale", "Wingdale"); addOption(document.getElementById('type'), "Woodstock", "Woodstock"); addOption(document.getElementById('type'), "Yonkers", "Yonkers"); addOption(document.getElementById('type'), "Yorktown Heights", "Yorktown Heights"); } function ChangeSchool() { removeAll(document.getElementById('type')); document.getElementById('type').name = "school_district"; addOption(document.getElementById('type'), "- Select School District -",""); addOption(document.getElementById('type'), "ANCRAM", "ANCRAM"); addOption(document.getElementById('type'), "ARDSLEY", "ARDSLEY"); addOption(document.getElementById('type'), "ARLINGTON", "ARLINGTON"); addOption(document.getElementById('type'), "AUSTERLITZ", "AUSTERLITZ"); addOption(document.getElementById('type'), "BEACON", "BEACON"); addOption(document.getElementById('type'), "BEDFORD", "BEDFORD"); addOption(document.getElementById('type'), "BLIND BROOK", "BLIND BROOK"); addOption(document.getElementById('type'), "BLOOMING GROVE", "BLOOMING GROVE"); addOption(document.getElementById('type'), "BREWSTER", "BREWSTER"); addOption(document.getElementById('type'), "BRIARCLIFF MANOR", "BRIARCLIFF MANOR"); addOption(document.getElementById('type'), "BRONX", "BRONX"); addOption(document.getElementById('type'), "BRONXVILLE", "BRONXVILLE"); addOption(document.getElementById('type'), "BROOKFIELD", "BROOKFIELD"); addOption(document.getElementById('type'), "BROOKLYN", "BROOKLYN"); addOption(document.getElementById('type'), "BYRAM HILLS", "BYRAM HILLS"); addOption(document.getElementById('type'), "CAMBRIA HEIGHTS", "CAMBRIA HEIGHTS"); addOption(document.getElementById('type'), "CANAAN", "CANAAN"); addOption(document.getElementById('type'), "CARMEL", "CARMEL"); addOption(document.getElementById('type'), "CHAPPAQUA", "CHAPPAQUA"); addOption(document.getElementById('type'), "CLERMONT 11", "CLERMONT 11"); addOption(document.getElementById('type'), "CLINTONDALE", "CLINTONDALE"); addOption(document.getElementById('type'), "COPAKE", "COPAKE"); addOption(document.getElementById('type'), "CORNWALL", "CORNWALL"); addOption(document.getElementById('type'), "CORNWALL ON HUDSON", "CORNWALL ON HUDSON"); addOption(document.getElementById('type'), "COS COB", "COS COB"); addOption(document.getElementById('type'), "COXSACKIE", "COXSACKIE"); addOption(document.getElementById('type'), "CROTON-HARMON", "CROTON-HARMON"); addOption(document.getElementById('type'), "CUDDEBACKVILLE", "CUDDEBACKVILLE"); addOption(document.getElementById('type'), "DANBURY", "DANBURY"); addOption(document.getElementById('type'), "DOBBS FERRY", "DOBBS FERRY"); addOption(document.getElementById('type'), "DOVER", "DOVER"); addOption(document.getElementById('type'), "EAST ELMHURST", "EAST ELMHURST"); addOption(document.getElementById('type'), "EASTCHESTER", "EASTCHESTER"); addOption(document.getElementById('type'), "EDGEMONT", "EDGEMONT"); addOption(document.getElementById('type'), "ELIZAVILLE", "ELIZAVILLE"); addOption(document.getElementById('type'), "ELMHURST", "ELMHURST"); addOption(document.getElementById('type'), "ELMSFORD", "ELMSFORD"); addOption(document.getElementById('type'), "ESOPUS", "ESOPUS"); addOption(document.getElementById('type'), "FALLSBURG", "FALLSBURG"); addOption(document.getElementById('type'), "FOREST HILLS", "FOREST HILLS"); addOption(document.getElementById('type'), "FRANKLIN SQUARE", "FRANKLIN SQUARE"); addOption(document.getElementById('type'), "FREEPORT", "FREEPORT"); addOption(document.getElementById('type'), "GARDINER", "GARDINER"); addOption(document.getElementById('type'), "GARRISON", "GARRISON"); addOption(document.getElementById('type'), "GLENS FALLS", "GLENS FALLS"); addOption(document.getElementById('type'), "GLENVILLE", "GLENVILLE"); addOption(document.getElementById('type'), "GOSHEN", "GOSHEN"); addOption(document.getElementById('type'), "GREENBURGH", "GREENBURGH"); addOption(document.getElementById('type'), "GREENVILLE", "GREENVILLE"); addOption(document.getElementById('type'), "GREENWICH", "GREENWICH"); addOption(document.getElementById('type'), "HALDANE", "HALDANE"); addOption(document.getElementById('type'), "HARRIMAN", "HARRIMAN"); addOption(document.getElementById('type'), "HARRISON", "HARRISON"); addOption(document.getElementById('type'), "HASTINGS", "HASTINGS"); addOption(document.getElementById('type'), "HAVERSTRAW", "HAVERSTRAW"); addOption(document.getElementById('type'), "HEMPSTEAD", "HEMPSTEAD"); addOption(document.getElementById('type'), "HENDRICK HUDSON", "HENDRICK HUDSON"); addOption(document.getElementById('type'), "HIGHLAND", "HIGHLAND"); addOption(document.getElementById('type'), "HIGHLAND MILLS", "HIGHLAND MILLS"); addOption(document.getElementById('type'), "HILLSDALE", "HILLSDALE"); addOption(document.getElementById('type'), "HURLEY", "HURLEY"); addOption(document.getElementById('type'), "HYDE PARK", "HYDE PARK"); addOption(document.getElementById('type'), "IRVING", "IRVING"); addOption(document.getElementById('type'), "IRVINGTON", "IRVINGTON"); addOption(document.getElementById('type'), "JACKSON HEIGHTS", "JACKSON HEIGHTS"); addOption(document.getElementById('type'), "JAMAICA", "JAMAICA"); addOption(document.getElementById('type'), "KATONAH-LEWISBORO", "KATONAH-LEWISBORO"); addOption(document.getElementById('type'), "KINDERHOOK", "KINDERHOOK"); addOption(document.getElementById('type'), "KINGSTON", "KINGSTON"); addOption(document.getElementById('type'), "LAKELAND", "LAKELAND"); addOption(document.getElementById('type'), "LIBERTY", "LIBERTY"); addOption(document.getElementById('type'), "LIVINGSTON", "LIVINGSTON"); addOption(document.getElementById('type'), "LLOYD", "LLOYD"); addOption(document.getElementById('type'), "MAHOPAC", "MAHOPAC"); addOption(document.getElementById('type'), "MALDEN ON HUDSON", "MALDEN ON HUDSON"); addOption(document.getElementById('type'), "MAMARONECK", "MAMARONECK"); addOption(document.getElementById('type'), "MARLBORO", "MARLBORO"); addOption(document.getElementById('type'), "MASPETH", "MASPETH"); addOption(document.getElementById('type'), "MAYBROOK", "MAYBROOK"); addOption(document.getElementById('type'), "MERIDEN", "MERIDEN"); addOption(document.getElementById('type'), "MIDDLE VILLAGE", "MIDDLE VILLAGE"); addOption(document.getElementById('type'), "MIDDLETOWN", "MIDDLETOWN"); addOption(document.getElementById('type'), "MILLBROOK", "MILLBROOK"); addOption(document.getElementById('type'), "MILTON", "MILTON"); addOption(document.getElementById('type'), "MONROE", "MONROE"); addOption(document.getElementById('type'), "MONTGOMERY", "MONTGOMERY"); addOption(document.getElementById('type'), "MOUNT PLEASANT", "MOUNT PLEASANT"); addOption(document.getElementById('type'), "MOUNT VERNON", "MOUNT VERNON"); addOption(document.getElementById('type'), "NANUET", "NANUET"); addOption(document.getElementById('type'), "NEW CANAAN", "NEW CANAAN"); addOption(document.getElementById('type'), "NEW CITY", "NEW CITY"); addOption(document.getElementById('type'), "NEW FAIRFIELD", "NEW FAIRFIELD"); addOption(document.getElementById('type'), "NEW MILFORD", "NEW MILFORD"); addOption(document.getElementById('type'), "NEW PALTZ", "NEW PALTZ"); addOption(document.getElementById('type'), "NEW ROCHELLE", "NEW ROCHELLE"); addOption(document.getElementById('type'), "NEW WINDSOR", "NEW WINDSOR"); addOption(document.getElementById('type'), "NEW YORK", "NEW YORK"); addOption(document.getElementById('type'), "NEWBURGH", "NEWBURGH"); addOption(document.getElementById('type'), "NEWTOWN", "NEWTOWN"); addOption(document.getElementById('type'), "NORTH SALEM", "NORTH SALEM"); addOption(document.getElementById('type'), "NYACK", "NYACK"); addOption(document.getElementById('type'), "OSSINING", "OSSINING"); addOption(document.getElementById('type'), "OTHER", "OTHER"); addOption(document.getElementById('type'), "PAWLING", "PAWLING"); addOption(document.getElementById('type'), "PEEKSKILL", "PEEKSKILL"); addOption(document.getElementById('type'), "PELHAM", "PELHAM"); addOption(document.getElementById('type'), "PIERMONT", "PIERMONT"); addOption(document.getElementById('type'), "PINE PLAINS", "PINE PLAINS"); addOption(document.getElementById('type'), "PLATTEKILL", "PLATTEKILL"); addOption(document.getElementById('type'), "PLEASANTVILLE", "PLEASANTVILLE"); addOption(document.getElementById('type'), "POCANTICO HILLS", "POCANTICO HILLS"); addOption(document.getElementById('type'), "PORT CHESTER", "PORT CHESTER"); addOption(document.getElementById('type'), "PORT EWEN", "PORT EWEN"); addOption(document.getElementById('type'), "PORT JERVIS", "PORT JERVIS"); addOption(document.getElementById('type'), "POUGHKEEPSIE", "POUGHKEEPSIE"); addOption(document.getElementById('type'), "POUGHKEEPSIE CITY", "POUGHKEEPSIE CITY"); addOption(document.getElementById('type'), "PUTNAM VALLEY", "PUTNAM VALLEY"); addOption(document.getElementById('type'), "QUEENS", "QUEENS"); addOption(document.getElementById('type'), "RED HOOK", "RED HOOK"); addOption(document.getElementById('type'), "REDDING", "REDDING"); addOption(document.getElementById('type'), "RHINEBECK", "RHINEBECK"); addOption(document.getElementById('type'), "RIDGEFIELD", "RIDGEFIELD"); addOption(document.getElementById('type'), "RIVERDALE", "RIVERDALE"); addOption(document.getElementById('type'), "RIVERSIDE", "RIVERSIDE"); addOption(document.getElementById('type'), "ROSENDALE", "ROSENDALE"); addOption(document.getElementById('type'), "ROSLYN HEIGHTS", "ROSLYN HEIGHTS"); addOption(document.getElementById('type'), "RYE CITY", "RYE CITY"); addOption(document.getElementById('type'), "RYE NECK", "RYE NECK"); addOption(document.getElementById('type'), "SAINT ALBANS", "SAINT ALBANS"); addOption(document.getElementById('type'), "SAUGERTIES", "SAUGERTIES"); addOption(document.getElementById('type'), "SCARSDALE", "SCARSDALE"); addOption(document.getElementById('type'), "SHERMAN", "SHERMAN"); addOption(document.getElementById('type'), "SHIRLEY", "SHIRLEY"); addOption(document.getElementById('type'), "SLOATSBURG", "SLOATSBURG"); addOption(document.getElementById('type'), "SOMERS", "SOMERS"); addOption(document.getElementById('type'), "SOUTHAMPTON", "SOUTHAMPTON"); addOption(document.getElementById('type'), "SOUTHBURY", "SOUTHBURY"); addOption(document.getElementById('type'), "SPACKENKILL", "SPACKENKILL"); addOption(document.getElementById('type'), "SPRINGFIELD GARDENS", "SPRINGFIELD GARDENS"); addOption(document.getElementById('type'), "STAMFORD", "STAMFORD"); addOption(document.getElementById('type'), "STATEN ISLAND", "STATEN ISLAND"); addOption(document.getElementById('type'), "STEPHENTOWN", "STEPHENTOWN"); addOption(document.getElementById('type'), "STONY POINT", "STONY POINT"); addOption(document.getElementById('type'), "STRATFORD", "STRATFORD"); addOption(document.getElementById('type'), "SUFFERN", "SUFFERN"); addOption(document.getElementById('type'), "TAPPAN", "TAPPAN"); addOption(document.getElementById('type'), "TARRYTOWN", "TARRYTOWN"); addOption(document.getElementById('type'), "TUCKAHOE", "TUCKAHOE"); addOption(document.getElementById('type'), "VALHALLA", "VALHALLA"); addOption(document.getElementById('type'), "VALLEY COTTAGE", "VALLEY COTTAGE"); addOption(document.getElementById('type'), "WALDEN", "WALDEN"); addOption(document.getElementById('type'), "WALLKILL", "WALLKILL"); addOption(document.getElementById('type'), "WAPPINGERS", "WAPPINGERS"); addOption(document.getElementById('type'), "WARWICK", "WARWICK"); addOption(document.getElementById('type'), "WATERBURY", "WATERBURY"); addOption(document.getElementById('type'), "WEBUTUCK", "WEBUTUCK"); addOption(document.getElementById('type'), "WESTON", "WESTON"); addOption(document.getElementById('type'), "WESTPORT", "WESTPORT"); addOption(document.getElementById('type'), "WHITE PLAINS", "WHITE PLAINS"); addOption(document.getElementById('type'), "WOODSTOCK", "WOODSTOCK"); addOption(document.getElementById('type'), "YONKERS", "YONKERS"); addOption(document.getElementById('type'), "YORKTOWN", "YORKTOWN"); }