// JavaScript Document

function saveMe() {
if (document.boxSearch.available.value == "" && document.boxSearch.txtnumber.value == "") {
alert("You must choose a town");
return(false);
} else {
document.boxSearch.txtTown.value = document.boxSearch.available.value;
if (document.boxSearch.proptype.value == 'SF') {
document.boxSearch.SF.value = document.boxSearch.proptype.value;
}
if (document.boxSearch.proptype.value == 'CC') {
document.boxSearch.CC.value = document.boxSearch.proptype.value;
}
if (document.boxSearch.proptype.value == 'MF') {
document.boxSearch.MF.value = document.boxSearch.proptype.value;
}
if (document.boxSearch.proptype.value == 'LD') {
document.boxSearch.LD.value = document.boxSearch.proptype.value;
}
if (document.boxSearch.proptype.value == 'CI') {
document.boxSearch.CI.value = document.boxSearch.proptype.value;
}
if (document.boxSearch.proptype.value == 'HM') {
document.boxSearch.HM.value = document.boxSearch.proptype.value;
}
if (document.boxSearch.proptype.value == 'MM') {
document.boxSearch.MM.value = document.boxSearch.proptype.value;
}
return(true);
}
}
function boxtrim(inputString) {
// Removes leading and trailing spaces from the passed string. Also removes
// consecutive spaces and replaces it with one space. If something besides
// a string is passed in (null, custom object, etc.) then return the input.
if (typeof inputString != "string") { return inputString; }
var retValue = inputString;
var ch = retValue.substring(0, 1);
while (ch == " ") { // Check for spaces at the beginning of the string
retValue = retValue.substring(1, retValue.length);
ch = retValue.substring(0, 1);
}
ch = retValue.substring(retValue.length-1, retValue.length);
while (ch == " ") { // Check for spaces at the end of the string
retValue = retValue.substring(0, retValue.length-1);
ch = retValue.substring(retValue.length-1, retValue.length);
}
while (retValue.indexOf("  ") != -1) { // Note that there are two spaces in the string - look for multiple spaces within the string
retValue = retValue.substring(0, retValue.indexOf("  ")) + retValue.substring(retValue.indexOf("  ")+1, retValue.length); // Again, there are two spaces in each of the strings
}
return retValue; // Return the boxtrimmed string back to the user
} // Ends the "boxtrim" function

var boxarrItems1 = new Array();
var boxarrItemsGrp1 = new Array();
var boxarrArea1 = new Array();
var boxarrAreaGrp1 = new Array();
<!--execute dbo.ASQL_towns '107992',1//-->

boxarrItems1[0] = "Acton";
boxarrArea1[0] = "";
boxarrItemsGrp1[0] = "ME";
boxarrItems1[1] = "Berwick";
boxarrArea1[1] = "";
boxarrItemsGrp1[1] = "ME";
boxarrItems1[2] = "Bridgton";
boxarrArea1[2] = "";
boxarrItemsGrp1[2] = "ME";
boxarrItems1[3] = "Brownfield";
boxarrArea1[3] = "";
boxarrItemsGrp1[3] = "ME";
boxarrItems1[4] = "Denmark";
boxarrArea1[4] = "";
boxarrItemsGrp1[4] = "ME";
boxarrItems1[5] = "East Lebanon";
boxarrArea1[5] = "";
boxarrItemsGrp1[5] = "ME";
boxarrItems1[6] = "Eliot";
boxarrArea1[6] = "";
boxarrItemsGrp1[6] = "ME";
boxarrItems1[7] = "Fryeburg";
boxarrArea1[7] = "";
boxarrItemsGrp1[7] = "ME";
boxarrItems1[8] = "Hiram";
boxarrArea1[8] = "";
boxarrItemsGrp1[8] = "ME";
boxarrItems1[9] = "Kittery";
boxarrArea1[9] = "";
boxarrItemsGrp1[9] = "ME";
boxarrItems1[10] = "Lebanon";
boxarrArea1[10] = "";
boxarrItemsGrp1[10] = "ME";
boxarrItems1[11] = "Lovell";
boxarrArea1[11] = "";
boxarrItemsGrp1[11] = "ME";
boxarrItems1[12] = "Newfield";
boxarrArea1[12] = "";
boxarrItemsGrp1[12] = "ME";
boxarrItems1[13] = "North Berwick";
boxarrArea1[13] = "";
boxarrItemsGrp1[13] = "ME";
boxarrItems1[14] = "Parsonfield";
boxarrArea1[14] = "";
boxarrItemsGrp1[14] = "ME";
boxarrItems1[15] = "Porter";
boxarrArea1[15] = "";
boxarrItemsGrp1[15] = "ME";
boxarrItems1[16] = "Sanford";
boxarrArea1[16] = "";
boxarrItemsGrp1[16] = "ME";
boxarrItems1[17] = "Shapleigh";
boxarrArea1[17] = "";
boxarrItemsGrp1[17] = "ME";
boxarrItems1[18] = "South Berwick";
boxarrArea1[18] = "";
boxarrItemsGrp1[18] = "ME";
boxarrItems1[19] = "South Lebanon";
boxarrArea1[19] = "";
boxarrItemsGrp1[19] = "ME";
boxarrItems1[20] = "Stow";
boxarrArea1[20] = "";
boxarrItemsGrp1[20] = "ME";
boxarrItems1[21] = "Sweden";
boxarrArea1[21] = "";
boxarrItemsGrp1[21] = "ME";
boxarrItems1[22] = "West Lebanon";
boxarrArea1[22] = "";
boxarrItemsGrp1[22] = "ME";
boxarrItems1[23] = "York";
boxarrArea1[23] = "";
boxarrItemsGrp1[23] = "ME";
boxarrItems1[24] = "York Beach";
boxarrArea1[24] = "";
boxarrItemsGrp1[24] = "ME";
boxarrItems1[25] = "York Harbor";
boxarrArea1[25] = "";
boxarrItemsGrp1[25] = "ME";
boxarrItems1[26] = "Acworth";
boxarrArea1[26] = "";
boxarrItemsGrp1[26] = "NH";
boxarrItems1[27] = "Albany";
boxarrArea1[27] = "";
boxarrItemsGrp1[27] = "NH";
boxarrItems1[28] = "Alexandria";
boxarrArea1[28] = "";
boxarrItemsGrp1[28] = "NH";
boxarrItems1[29] = "Allenstown";
boxarrArea1[29] = "";
boxarrItemsGrp1[29] = "NH";
boxarrItems1[30] = "Alstead";
boxarrArea1[30] = "";
boxarrItemsGrp1[30] = "NH";
boxarrItems1[31] = "Alton";
boxarrArea1[31] = "";
boxarrItemsGrp1[31] = "NH";
boxarrItems1[32] = "Amherst";
boxarrArea1[32] = "";
boxarrItemsGrp1[32] = "NH";
boxarrItems1[33] = "Andover";
boxarrArea1[33] = "";
boxarrItemsGrp1[33] = "NH";
boxarrItems1[34] = "Antrim";
boxarrArea1[34] = "";
boxarrItemsGrp1[34] = "NH";
boxarrItems1[35] = "Ashland";
boxarrArea1[35] = "";
boxarrItemsGrp1[35] = "NH";
boxarrItems1[36] = "Ashullot";
boxarrArea1[36] = "";
boxarrItemsGrp1[36] = "NH";
boxarrItems1[37] = "Atkinson";
boxarrArea1[37] = "";
boxarrItemsGrp1[37] = "NH";
boxarrItems1[38] = "Atkinson&Gilmanton AG";
boxarrArea1[38] = "";
boxarrItemsGrp1[38] = "NH";
boxarrItems1[39] = "Auburn";
boxarrArea1[39] = "";
boxarrItemsGrp1[39] = "NH";
boxarrItems1[40] = "Barnstead";
boxarrArea1[40] = "";
boxarrItemsGrp1[40] = "NH";
boxarrItems1[41] = "Barrington";
boxarrArea1[41] = "";
boxarrItemsGrp1[41] = "NH";
boxarrItems1[42] = "Bartlett";
boxarrArea1[42] = "";
boxarrItemsGrp1[42] = "NH";
boxarrItems1[43] = "Bath";
boxarrArea1[43] = "";
boxarrItemsGrp1[43] = "NH";
boxarrItems1[44] = "Beans Grant";
boxarrArea1[44] = "";
boxarrItemsGrp1[44] = "NH";
boxarrItems1[45] = "Beans Purchase";
boxarrArea1[45] = "";
boxarrItemsGrp1[45] = "NH";
boxarrItems1[46] = "Bedford";
boxarrArea1[46] = "";
boxarrItemsGrp1[46] = "NH";
boxarrItems1[47] = "Belmont";
boxarrArea1[47] = "";
boxarrItemsGrp1[47] = "NH";
boxarrItems1[48] = "Bennington";
boxarrArea1[48] = "";
boxarrItemsGrp1[48] = "NH";
boxarrItems1[49] = "Benton";
boxarrArea1[49] = "";
boxarrItemsGrp1[49] = "NH";
boxarrItems1[50] = "Berlin";
boxarrArea1[50] = "";
boxarrItemsGrp1[50] = "NH";
boxarrItems1[51] = "Bethlehem";
boxarrArea1[51] = "";
boxarrItemsGrp1[51] = "NH";
boxarrItems1[52] = "Boscawen";
boxarrArea1[52] = "";
boxarrItemsGrp1[52] = "NH";
boxarrItems1[53] = "Bow";
boxarrArea1[53] = "";
boxarrItemsGrp1[53] = "NH";
boxarrItems1[54] = "Bradford";
boxarrArea1[54] = "";
boxarrItemsGrp1[54] = "NH";
boxarrItems1[55] = "Brentwood";
boxarrArea1[55] = "";
boxarrItemsGrp1[55] = "NH";
boxarrItems1[56] = "Bridgewater";
boxarrArea1[56] = "";
boxarrItemsGrp1[56] = "NH";
boxarrItems1[57] = "Bristol";
boxarrArea1[57] = "";
boxarrItemsGrp1[57] = "NH";
boxarrItems1[58] = "Brookfield";
boxarrArea1[58] = "";
boxarrItemsGrp1[58] = "NH";
boxarrItems1[59] = "Brookline";
boxarrArea1[59] = "";
boxarrItemsGrp1[59] = "NH";
boxarrItems1[60] = "Cambridge";
boxarrArea1[60] = "";
boxarrItemsGrp1[60] = "NH";
boxarrItems1[61] = "Campton";
boxarrArea1[61] = "";
boxarrItemsGrp1[61] = "NH";
boxarrItems1[62] = "Canaan";
boxarrArea1[62] = "";
boxarrItemsGrp1[62] = "NH";
boxarrItems1[63] = "Candia";
boxarrArea1[63] = "";
boxarrItemsGrp1[63] = "NH";
boxarrItems1[64] = "Canterbury";
boxarrArea1[64] = "";
boxarrItemsGrp1[64] = "NH";
boxarrItems1[65] = "Carroll";
boxarrArea1[65] = "";
boxarrItemsGrp1[65] = "NH";
boxarrItems1[66] = "Center Harbor";
boxarrArea1[66] = "";
boxarrItemsGrp1[66] = "NH";
boxarrItems1[67] = "Chandler's Purchase";
boxarrArea1[67] = "";
boxarrItemsGrp1[67] = "NH";
boxarrItems1[68] = "Charlestown";
boxarrArea1[68] = "";
boxarrItemsGrp1[68] = "NH";
boxarrItems1[69] = "Chatham";
boxarrArea1[69] = "";
boxarrItemsGrp1[69] = "NH";
boxarrItems1[70] = "Chester";
boxarrArea1[70] = "";
boxarrItemsGrp1[70] = "NH";
boxarrItems1[71] = "Chesterfield";
boxarrArea1[71] = "";
boxarrItemsGrp1[71] = "NH";
boxarrItems1[72] = "Chichester";
boxarrArea1[72] = "";
boxarrItemsGrp1[72] = "NH";
boxarrItems1[73] = "Claremont";
boxarrArea1[73] = "";
boxarrItemsGrp1[73] = "NH";
boxarrItems1[74] = "Clarksville";
boxarrArea1[74] = "";
boxarrItemsGrp1[74] = "NH";
boxarrItems1[75] = "Colebrook";
boxarrArea1[75] = "";
boxarrItemsGrp1[75] = "NH";
boxarrItems1[76] = "Columbia";
boxarrArea1[76] = "";
boxarrItemsGrp1[76] = "NH";
boxarrItems1[77] = "Concord";
boxarrArea1[77] = "";
boxarrItemsGrp1[77] = "NH";
boxarrItems1[78] = "Contoocook";
boxarrArea1[78] = "";
boxarrItemsGrp1[78] = "NH";
boxarrItems1[79] = "Conway";
boxarrArea1[79] = "";
boxarrItemsGrp1[79] = "NH";
boxarrItems1[80] = "Cornish";
boxarrArea1[80] = "";
boxarrItemsGrp1[80] = "NH";
boxarrItems1[81] = "Crawford's Purchase";
boxarrArea1[81] = "";
boxarrItemsGrp1[81] = "NH";
boxarrItems1[82] = "Croydon";
boxarrArea1[82] = "";
boxarrItemsGrp1[82] = "NH";
boxarrItems1[83] = "Cutt's Grant";
boxarrArea1[83] = "";
boxarrItemsGrp1[83] = "NH";
boxarrItems1[84] = "Dalton";
boxarrArea1[84] = "";
boxarrItemsGrp1[84] = "NH";
boxarrItems1[85] = "Danbury";
boxarrArea1[85] = "";
boxarrItemsGrp1[85] = "NH";
boxarrItems1[86] = "Danville";
boxarrArea1[86] = "";
boxarrItemsGrp1[86] = "NH";
boxarrItems1[87] = "Deerfield";
boxarrArea1[87] = "";
boxarrItemsGrp1[87] = "NH";
boxarrItems1[88] = "Deering";
boxarrArea1[88] = "";
boxarrItemsGrp1[88] = "NH";
boxarrItems1[89] = "Derry";
boxarrArea1[89] = "";
boxarrItemsGrp1[89] = "NH";
boxarrItems1[90] = "Dix's Grant";
boxarrArea1[90] = "";
boxarrItemsGrp1[90] = "NH";
boxarrItems1[91] = "Dixville";
boxarrArea1[91] = "";
boxarrItemsGrp1[91] = "NH";
boxarrItems1[92] = "Dorchester";
boxarrArea1[92] = "";
boxarrItemsGrp1[92] = "NH";
boxarrItems1[93] = "Dover";
boxarrArea1[93] = "";
boxarrItemsGrp1[93] = "NH";
boxarrItems1[94] = "Dublin";
boxarrArea1[94] = "";
boxarrItemsGrp1[94] = "NH";
boxarrItems1[95] = "Dummer";
boxarrArea1[95] = "";
boxarrItemsGrp1[95] = "NH";
boxarrItems1[96] = "Dunbarton";
boxarrArea1[96] = "";
boxarrItemsGrp1[96] = "NH";
boxarrItems1[97] = "Durham";
boxarrArea1[97] = "";
boxarrItemsGrp1[97] = "NH";
boxarrItems1[98] = "East Kingston";
boxarrArea1[98] = "";
boxarrItemsGrp1[98] = "NH";
boxarrItems1[99] = "Eastman";
boxarrArea1[99] = "";
boxarrItemsGrp1[99] = "NH";
boxarrItems1[100] = "Easton";
boxarrArea1[100] = "";
boxarrItemsGrp1[100] = "NH";
boxarrItems1[101] = "Eaton";
boxarrArea1[101] = "";
boxarrItemsGrp1[101] = "NH";
boxarrItems1[102] = "Effingham";
boxarrArea1[102] = "";
boxarrItemsGrp1[102] = "NH";
boxarrItems1[103] = "Ellsworth";
boxarrArea1[103] = "";
boxarrItemsGrp1[103] = "NH";
boxarrItems1[104] = "Enfield";
boxarrArea1[104] = "";
boxarrItemsGrp1[104] = "NH";
boxarrItems1[105] = "Epping";
boxarrArea1[105] = "";
boxarrItemsGrp1[105] = "NH";
boxarrItems1[106] = "Epsom";
boxarrArea1[106] = "";
boxarrItemsGrp1[106] = "NH";
boxarrItems1[107] = "Errol";
boxarrArea1[107] = "";
boxarrItemsGrp1[107] = "NH";
boxarrItems1[108] = "Erving's Grant";
boxarrArea1[108] = "";
boxarrItemsGrp1[108] = "NH";
boxarrItems1[109] = "Exeter";
boxarrArea1[109] = "";
boxarrItemsGrp1[109] = "NH";
boxarrItems1[110] = "Farmington";
boxarrArea1[110] = "";
boxarrItemsGrp1[110] = "NH";
boxarrItems1[111] = "Fitzwilliam";
boxarrArea1[111] = "";
boxarrItemsGrp1[111] = "NH";
boxarrItems1[112] = "Francestown";
boxarrArea1[112] = "";
boxarrItemsGrp1[112] = "NH";
boxarrItems1[113] = "Franconia";
boxarrArea1[113] = "";
boxarrItemsGrp1[113] = "NH";
boxarrItems1[114] = "Franklin";
boxarrArea1[114] = "";
boxarrItemsGrp1[114] = "NH";
boxarrItems1[115] = "Freedom";
boxarrArea1[115] = "";
boxarrItemsGrp1[115] = "NH";
boxarrItems1[116] = "Fremont";
boxarrArea1[116] = "";
boxarrItemsGrp1[116] = "NH";
boxarrItems1[117] = "Gilford";
boxarrArea1[117] = "";
boxarrItemsGrp1[117] = "NH";
boxarrItems1[118] = "Gilmanton";
boxarrArea1[118] = "";
boxarrItemsGrp1[118] = "NH";
boxarrItems1[119] = "Gilsum";
boxarrArea1[119] = "";
boxarrItemsGrp1[119] = "NH";
boxarrItems1[120] = "Goffstown";
boxarrArea1[120] = "";
boxarrItemsGrp1[120] = "NH";
boxarrItems1[121] = "Gorham";
boxarrArea1[121] = "";
boxarrItemsGrp1[121] = "NH";
boxarrItems1[122] = "Goshen";
boxarrArea1[122] = "";
boxarrItemsGrp1[122] = "NH";
boxarrItems1[123] = "Grafton";
boxarrArea1[123] = "";
boxarrItemsGrp1[123] = "NH";
boxarrItems1[124] = "Grantham";
boxarrArea1[124] = "";
boxarrItemsGrp1[124] = "NH";
boxarrItems1[125] = "Green's Grant";
boxarrArea1[125] = "";
boxarrItemsGrp1[125] = "NH";
boxarrItems1[126] = "Greenfield";
boxarrArea1[126] = "";
boxarrItemsGrp1[126] = "NH";
boxarrItems1[127] = "Greenland";
boxarrArea1[127] = "";
boxarrItemsGrp1[127] = "NH";
boxarrItems1[128] = "Greenville";
boxarrArea1[128] = "";
boxarrItemsGrp1[128] = "NH";
boxarrItems1[129] = "Groton";
boxarrArea1[129] = "";
boxarrItemsGrp1[129] = "NH";
boxarrItems1[130] = "Groveton";
boxarrArea1[130] = "";
boxarrItemsGrp1[130] = "NH";
boxarrItems1[131] = "Hadley's Purchase";
boxarrArea1[131] = "";
boxarrItemsGrp1[131] = "NH";
boxarrItems1[132] = "Hale's Location";
boxarrArea1[132] = "";
boxarrItemsGrp1[132] = "NH";
boxarrItems1[133] = "Hampstead";
boxarrArea1[133] = "";
boxarrItemsGrp1[133] = "NH";
boxarrItems1[134] = "Hampton";
boxarrArea1[134] = "";
boxarrItemsGrp1[134] = "NH";
boxarrItems1[135] = "Hamptonfalls";
boxarrArea1[135] = "";
boxarrItemsGrp1[135] = "NH";
boxarrItems1[136] = "Hancock";
boxarrArea1[136] = "";
boxarrItemsGrp1[136] = "NH";
boxarrItems1[137] = "Hanover";
boxarrArea1[137] = "";
boxarrItemsGrp1[137] = "NH";
boxarrItems1[138] = "Harrisville";
boxarrArea1[138] = "";
boxarrItemsGrp1[138] = "NH";
boxarrItems1[139] = "Hart's Location";
boxarrArea1[139] = "";
boxarrItemsGrp1[139] = "NH";
boxarrItems1[140] = "Haverhill";
boxarrArea1[140] = "";
boxarrItemsGrp1[140] = "NH";
boxarrItems1[141] = "Hebron";
boxarrArea1[141] = "";
boxarrItemsGrp1[141] = "NH";
boxarrItems1[142] = "Henniker";
boxarrArea1[142] = "";
boxarrItemsGrp1[142] = "NH";
boxarrItems1[143] = "Hill";
boxarrArea1[143] = "";
boxarrItemsGrp1[143] = "NH";
boxarrItems1[144] = "Hillsboro";
boxarrArea1[144] = "";
boxarrItemsGrp1[144] = "NH";
boxarrItems1[145] = "Hinsdale";
boxarrArea1[145] = "";
boxarrItemsGrp1[145] = "NH";
boxarrItems1[146] = "Holderness";
boxarrArea1[146] = "";
boxarrItemsGrp1[146] = "NH";
boxarrItems1[147] = "Hollis";
boxarrArea1[147] = "";
boxarrItemsGrp1[147] = "NH";
boxarrItems1[148] = "Hooksett";
boxarrArea1[148] = "";
boxarrItemsGrp1[148] = "NH";
boxarrItems1[149] = "Hopkinton";
boxarrArea1[149] = "";
boxarrItemsGrp1[149] = "NH";
boxarrItems1[150] = "Hudson";
boxarrArea1[150] = "";
boxarrItemsGrp1[150] = "NH";
boxarrItems1[151] = "Jackson";
boxarrArea1[151] = "";
boxarrItemsGrp1[151] = "NH";
boxarrItems1[152] = "Jaffrey";
boxarrArea1[152] = "";
boxarrItemsGrp1[152] = "NH";
boxarrItems1[153] = "Jefferson";
boxarrArea1[153] = "";
boxarrItemsGrp1[153] = "NH";
boxarrItems1[154] = "Keene";
boxarrArea1[154] = "";
boxarrItemsGrp1[154] = "NH";
boxarrItems1[155] = "Kensington";
boxarrArea1[155] = "";
boxarrItemsGrp1[155] = "NH";
boxarrItems1[156] = "Kilkenney";
boxarrArea1[156] = "";
boxarrItemsGrp1[156] = "NH";
boxarrItems1[157] = "Kingston";
boxarrArea1[157] = "";
boxarrItemsGrp1[157] = "NH";
boxarrItems1[158] = "Laconia";
boxarrArea1[158] = "";
boxarrItemsGrp1[158] = "NH";
boxarrItems1[159] = "Lancaster";
boxarrArea1[159] = "";
boxarrItemsGrp1[159] = "NH";
boxarrItems1[160] = "Landaff";
boxarrArea1[160] = "";
boxarrItemsGrp1[160] = "NH";
boxarrItems1[161] = "Langdon";
boxarrArea1[161] = "";
boxarrItemsGrp1[161] = "NH";
boxarrItems1[162] = "Lebanon";
boxarrArea1[162] = "";
boxarrItemsGrp1[162] = "NH";
boxarrItems1[163] = "Lee";
boxarrArea1[163] = "";
boxarrItemsGrp1[163] = "NH";
boxarrItems1[164] = "Lempster";
boxarrArea1[164] = "";
boxarrItemsGrp1[164] = "NH";
boxarrItems1[165] = "Lincoln";
boxarrArea1[165] = "";
boxarrItemsGrp1[165] = "NH";
boxarrItems1[166] = "Lisbon";
boxarrArea1[166] = "";
boxarrItemsGrp1[166] = "NH";
boxarrItems1[167] = "Litchfield";
boxarrArea1[167] = "";
boxarrItemsGrp1[167] = "NH";
boxarrItems1[168] = "Littleton";
boxarrArea1[168] = "";
boxarrItemsGrp1[168] = "NH";
boxarrItems1[169] = "Livermore";
boxarrArea1[169] = "";
boxarrItemsGrp1[169] = "NH";
boxarrItems1[170] = "Londonderry";
boxarrArea1[170] = "";
boxarrItemsGrp1[170] = "NH";
boxarrItems1[171] = "Loudon";
boxarrArea1[171] = "";
boxarrItemsGrp1[171] = "NH";
boxarrItems1[172] = "Low & Burbank's Grant";
boxarrArea1[172] = "";
boxarrItemsGrp1[172] = "NH";
boxarrItems1[173] = "Lyman";
boxarrArea1[173] = "";
boxarrItemsGrp1[173] = "NH";
boxarrItems1[174] = "Lyme";
boxarrArea1[174] = "";
boxarrItemsGrp1[174] = "NH";
boxarrItems1[175] = "Lyndeboro";
boxarrArea1[175] = "";
boxarrItemsGrp1[175] = "NH";
boxarrItems1[176] = "Madbury";
boxarrArea1[176] = "";
boxarrItemsGrp1[176] = "NH";
boxarrItems1[177] = "Madison";
boxarrArea1[177] = "";
boxarrItemsGrp1[177] = "NH";
boxarrItems1[178] = "Manchester";
boxarrArea1[178] = "";
boxarrItemsGrp1[178] = "NH";
boxarrItems1[179] = "Marlboro";
boxarrArea1[179] = "";
boxarrItemsGrp1[179] = "NH";
boxarrItems1[180] = "Marlow";
boxarrArea1[180] = "";
boxarrItemsGrp1[180] = "NH";
boxarrItems1[181] = "Martin's Location";
boxarrArea1[181] = "";
boxarrItemsGrp1[181] = "NH";
boxarrItems1[182] = "Mason";
boxarrArea1[182] = "";
boxarrItemsGrp1[182] = "NH";
boxarrItems1[183] = "Meredith";
boxarrArea1[183] = "";
boxarrItemsGrp1[183] = "NH";
boxarrItems1[184] = "Merrimack";
boxarrArea1[184] = "";
boxarrItemsGrp1[184] = "NH";
boxarrItems1[185] = "Middleton";
boxarrArea1[185] = "";
boxarrItemsGrp1[185] = "NH";
boxarrItems1[186] = "Milan";
boxarrArea1[186] = "";
boxarrItemsGrp1[186] = "NH";
boxarrItems1[187] = "Milford";
boxarrArea1[187] = "";
boxarrItemsGrp1[187] = "NH";
boxarrItems1[188] = "Millsfield";
boxarrArea1[188] = "";
boxarrItemsGrp1[188] = "NH";
boxarrItems1[189] = "Milton";
boxarrArea1[189] = "";
boxarrItemsGrp1[189] = "NH";
boxarrItems1[190] = "Monroe";
boxarrArea1[190] = "";
boxarrItemsGrp1[190] = "NH";
boxarrItems1[191] = "Mont Vernon";
boxarrArea1[191] = "";
boxarrItemsGrp1[191] = "NH";
boxarrItems1[192] = "Moultonboro";
boxarrArea1[192] = "";
boxarrItemsGrp1[192] = "NH";
boxarrItems1[193] = "Nashua";
boxarrArea1[193] = "";
boxarrItemsGrp1[193] = "NH";
boxarrItems1[194] = "Nelson";
boxarrArea1[194] = "";
boxarrItemsGrp1[194] = "NH";
boxarrItems1[195] = "New Boston";
boxarrArea1[195] = "";
boxarrItemsGrp1[195] = "NH";
boxarrItems1[196] = "New Castle";
boxarrArea1[196] = "";
boxarrItemsGrp1[196] = "NH";
boxarrItems1[197] = "New Durham";
boxarrArea1[197] = "";
boxarrItemsGrp1[197] = "NH";
boxarrItems1[198] = "New Hampton";
boxarrArea1[198] = "";
boxarrItemsGrp1[198] = "NH";
boxarrItems1[199] = "New Ipswich";
boxarrArea1[199] = "";
boxarrItemsGrp1[199] = "NH";
boxarrItems1[200] = "New London";
boxarrArea1[200] = "";
boxarrItemsGrp1[200] = "NH";
boxarrItems1[201] = "Newbury";
boxarrArea1[201] = "";
boxarrItemsGrp1[201] = "NH";
boxarrItems1[202] = "Newfields";
boxarrArea1[202] = "";
boxarrItemsGrp1[202] = "NH";
boxarrItems1[203] = "Newington";
boxarrArea1[203] = "";
boxarrItemsGrp1[203] = "NH";
boxarrItems1[204] = "Newmarket";
boxarrArea1[204] = "";
boxarrItemsGrp1[204] = "NH";
boxarrItems1[205] = "Newport";
boxarrArea1[205] = "";
boxarrItemsGrp1[205] = "NH";
boxarrItems1[206] = "Newton";
boxarrArea1[206] = "";
boxarrItemsGrp1[206] = "NH";
boxarrItems1[207] = "North Conway";
boxarrArea1[207] = "";
boxarrItemsGrp1[207] = "NH";
boxarrItems1[208] = "North Hampton";
boxarrArea1[208] = "";
boxarrItemsGrp1[208] = "NH";
boxarrItems1[209] = "Northfield";
boxarrArea1[209] = "";
boxarrItemsGrp1[209] = "NH";
boxarrItems1[210] = "Northumberland";
boxarrArea1[210] = "";
boxarrItemsGrp1[210] = "NH";
boxarrItems1[211] = "Northwood";
boxarrArea1[211] = "";
boxarrItemsGrp1[211] = "NH";
boxarrItems1[212] = "Nottingham";
boxarrArea1[212] = "";
boxarrItemsGrp1[212] = "NH";
boxarrItems1[213] = "Odell";
boxarrArea1[213] = "";
boxarrItemsGrp1[213] = "NH";
boxarrItems1[214] = "Orange";
boxarrArea1[214] = "";
boxarrItemsGrp1[214] = "NH";
boxarrItems1[215] = "Orford";
boxarrArea1[215] = "";
boxarrItemsGrp1[215] = "NH";
boxarrItems1[216] = "Ossipee";
boxarrArea1[216] = "";
boxarrItemsGrp1[216] = "NH";
boxarrItems1[217] = "Pelham";
boxarrArea1[217] = "";
boxarrItemsGrp1[217] = "NH";
boxarrItems1[218] = "Pembroke";
boxarrArea1[218] = "";
boxarrItemsGrp1[218] = "NH";
boxarrItems1[219] = "Penacook";
boxarrArea1[219] = "";
boxarrItemsGrp1[219] = "NH";
boxarrItems1[220] = "Peterborough";
boxarrArea1[220] = "";
boxarrItemsGrp1[220] = "NH";
boxarrItems1[221] = "Piermont";
boxarrArea1[221] = "";
boxarrItemsGrp1[221] = "NH";
boxarrItems1[222] = "Pinkham's Grant";
boxarrArea1[222] = "";
boxarrItemsGrp1[222] = "NH";
boxarrItems1[223] = "Pittsburg";
boxarrArea1[223] = "";
boxarrItemsGrp1[223] = "NH";
boxarrItems1[224] = "Pittsfield";
boxarrArea1[224] = "";
boxarrItemsGrp1[224] = "NH";
boxarrItems1[225] = "Plainfield";
boxarrArea1[225] = "";
boxarrItemsGrp1[225] = "NH";
boxarrItems1[226] = "Plaistow";
boxarrArea1[226] = "";
boxarrItemsGrp1[226] = "NH";
boxarrItems1[227] = "Plymouth";
boxarrArea1[227] = "";
boxarrItemsGrp1[227] = "NH";
boxarrItems1[228] = "Portsmouth";
boxarrArea1[228] = "";
boxarrItemsGrp1[228] = "NH";
boxarrItems1[229] = "Randolph";
boxarrArea1[229] = "";
boxarrItemsGrp1[229] = "NH";
boxarrItems1[230] = "Raymond";
boxarrArea1[230] = "";
boxarrItemsGrp1[230] = "NH";
boxarrItems1[231] = "Richmond";
boxarrArea1[231] = "";
boxarrItemsGrp1[231] = "NH";
boxarrItems1[232] = "Rindge";
boxarrArea1[232] = "";
boxarrItemsGrp1[232] = "NH";
boxarrItems1[233] = "Rochester";
boxarrArea1[233] = "";
boxarrItemsGrp1[233] = "NH";
boxarrItems1[234] = "Rollinsford";
boxarrArea1[234] = "";
boxarrItemsGrp1[234] = "NH";
boxarrItems1[235] = "Roxbury";
boxarrArea1[235] = "";
boxarrItemsGrp1[235] = "NH";
boxarrItems1[236] = "Rumney";
boxarrArea1[236] = "";
boxarrItemsGrp1[236] = "NH";
boxarrItems1[237] = "Rye";
boxarrArea1[237] = "";
boxarrItemsGrp1[237] = "NH";
boxarrItems1[238] = "Rye Beach";
boxarrArea1[238] = "";
boxarrItemsGrp1[238] = "NH";
boxarrItems1[239] = "Salem";
boxarrArea1[239] = "";
boxarrItemsGrp1[239] = "NH";
boxarrItems1[240] = "Salisbury";
boxarrArea1[240] = "";
boxarrItemsGrp1[240] = "NH";
boxarrItems1[241] = "Sanbornton";
boxarrArea1[241] = "";
boxarrItemsGrp1[241] = "NH";
boxarrItems1[242] = "Sandown";
boxarrArea1[242] = "";
boxarrItemsGrp1[242] = "NH";
boxarrItems1[243] = "Sandwich";
boxarrArea1[243] = "";
boxarrItemsGrp1[243] = "NH";
boxarrItems1[244] = "Sargent's Purchase";
boxarrArea1[244] = "";
boxarrItemsGrp1[244] = "NH";
boxarrItems1[245] = "Seabrook";
boxarrArea1[245] = "";
boxarrItemsGrp1[245] = "NH";
boxarrItems1[246] = "Seabrook Beach";
boxarrArea1[246] = "";
boxarrItemsGrp1[246] = "NH";
boxarrItems1[247] = "Second College Grant";
boxarrArea1[247] = "";
boxarrItemsGrp1[247] = "NH";
boxarrItems1[248] = "Sharon";
boxarrArea1[248] = "";
boxarrItemsGrp1[248] = "NH";
boxarrItems1[249] = "Shelburne";
boxarrArea1[249] = "";
boxarrItemsGrp1[249] = "NH";
boxarrItems1[250] = "Somersworth";
boxarrArea1[250] = "";
boxarrItemsGrp1[250] = "NH";
boxarrItems1[251] = "South Hampton";
boxarrArea1[251] = "";
boxarrItemsGrp1[251] = "NH";
boxarrItems1[252] = "Springfield";
boxarrArea1[252] = "";
boxarrItemsGrp1[252] = "NH";
boxarrItems1[253] = "Stark";
boxarrArea1[253] = "";
boxarrItemsGrp1[253] = "NH";
boxarrItems1[254] = "Stewartstown";
boxarrArea1[254] = "";
boxarrItemsGrp1[254] = "NH";
boxarrItems1[255] = "Stoddard";
boxarrArea1[255] = "";
boxarrItemsGrp1[255] = "NH";
boxarrItems1[256] = "Strafford";
boxarrArea1[256] = "";
boxarrItemsGrp1[256] = "NH";
boxarrItems1[257] = "Stratford";
boxarrArea1[257] = "";
boxarrItemsGrp1[257] = "NH";
boxarrItems1[258] = "Stratham";
boxarrArea1[258] = "";
boxarrItemsGrp1[258] = "NH";
boxarrItems1[259] = "Success";
boxarrArea1[259] = "";
boxarrItemsGrp1[259] = "NH";
boxarrItems1[260] = "Sugarhill";
boxarrArea1[260] = "";
boxarrItemsGrp1[260] = "NH";
boxarrItems1[261] = "Sullivan";
boxarrArea1[261] = "";
boxarrItemsGrp1[261] = "NH";
boxarrItems1[262] = "Sunapee";
boxarrArea1[262] = "";
boxarrItemsGrp1[262] = "NH";
boxarrItems1[263] = "Suncook";
boxarrArea1[263] = "";
boxarrItemsGrp1[263] = "NH";
boxarrItems1[264] = "Surry";
boxarrArea1[264] = "";
boxarrItemsGrp1[264] = "NH";
boxarrItems1[265] = "Sutton";
boxarrArea1[265] = "";
boxarrItemsGrp1[265] = "NH";
boxarrItems1[266] = "Swanzey";
boxarrArea1[266] = "";
boxarrItemsGrp1[266] = "NH";
boxarrItems1[267] = "Tamworth";
boxarrArea1[267] = "";
boxarrItemsGrp1[267] = "NH";
boxarrItems1[268] = "Temple";
boxarrArea1[268] = "";
boxarrItemsGrp1[268] = "NH";
boxarrItems1[269] = "Thomandmes";
boxarrArea1[269] = "";
boxarrItemsGrp1[269] = "NH";
boxarrItems1[270] = "Thornton";
boxarrArea1[270] = "";
boxarrItemsGrp1[270] = "NH";
boxarrItems1[271] = "Tilton";
boxarrArea1[271] = "";
boxarrItemsGrp1[271] = "NH";
boxarrItems1[272] = "Troy";
boxarrArea1[272] = "";
boxarrItemsGrp1[272] = "NH";
boxarrItems1[273] = "Tuftonboro";
boxarrArea1[273] = "";
boxarrItemsGrp1[273] = "NH";
boxarrItems1[274] = "Unity";
boxarrArea1[274] = "";
boxarrItemsGrp1[274] = "NH";
boxarrItems1[275] = "Wakefield";
boxarrArea1[275] = "";
boxarrItemsGrp1[275] = "NH";
boxarrItems1[276] = "Walpole";
boxarrArea1[276] = "";
boxarrItemsGrp1[276] = "NH";
boxarrItems1[277] = "Warner";
boxarrArea1[277] = "";
boxarrItemsGrp1[277] = "NH";
boxarrItems1[278] = "Warren";
boxarrArea1[278] = "";
boxarrItemsGrp1[278] = "NH";
boxarrItems1[279] = "Washington";
boxarrArea1[279] = "";
boxarrItemsGrp1[279] = "NH";
boxarrItems1[280] = "Waterville Valley";
boxarrArea1[280] = "";
boxarrItemsGrp1[280] = "NH";
boxarrItems1[281] = "Weare";
boxarrArea1[281] = "";
boxarrItemsGrp1[281] = "NH";
boxarrItems1[282] = "Webster";
boxarrArea1[282] = "";
boxarrItemsGrp1[282] = "NH";
boxarrItems1[283] = "Wentworth";
boxarrArea1[283] = "";
boxarrItemsGrp1[283] = "NH";
boxarrItems1[284] = "Wentworth's Location";
boxarrArea1[284] = "";
boxarrItemsGrp1[284] = "NH";
boxarrItems1[285] = "Westmoreland";
boxarrArea1[285] = "";
boxarrItemsGrp1[285] = "NH";
boxarrItems1[286] = "Whitefield";
boxarrArea1[286] = "";
boxarrItemsGrp1[286] = "NH";
boxarrItems1[287] = "Wilmot";
boxarrArea1[287] = "";
boxarrItemsGrp1[287] = "NH";
boxarrItems1[288] = "Wilton";
boxarrArea1[288] = "";
boxarrItemsGrp1[288] = "NH";
boxarrItems1[289] = "Winchester";
boxarrArea1[289] = "";
boxarrItemsGrp1[289] = "NH";
boxarrItems1[290] = "Windham";
boxarrArea1[290] = "";
boxarrItemsGrp1[290] = "NH";
boxarrItems1[291] = "Windsor";
boxarrArea1[291] = "";
boxarrItemsGrp1[291] = "NH";
boxarrItems1[292] = "Wolfeboro";
boxarrArea1[292] = "";
boxarrItemsGrp1[292] = "NH";
boxarrItems1[293] = "Woodstock";
boxarrArea1[293] = "";
boxarrItemsGrp1[293] = "NH";
boxarrItems1[294] = "Addison";
boxarrArea1[294] = "";
boxarrItemsGrp1[294] = "VT";
boxarrItems1[295] = "Albany";
boxarrArea1[295] = "";
boxarrItemsGrp1[295] = "VT";
boxarrItems1[296] = "Alburg";
boxarrArea1[296] = "";
boxarrItemsGrp1[296] = "VT";
boxarrItems1[297] = "Andover";
boxarrArea1[297] = "";
boxarrItemsGrp1[297] = "VT";
boxarrItems1[298] = "Arlington";
boxarrArea1[298] = "";
boxarrItemsGrp1[298] = "VT";
boxarrItems1[299] = "Ascutney";
boxarrArea1[299] = "";
boxarrItemsGrp1[299] = "VT";
boxarrItems1[300] = "Athens";
boxarrArea1[300] = "";
boxarrItemsGrp1[300] = "VT";
boxarrItems1[301] = "Averill";
boxarrArea1[301] = "";
boxarrItemsGrp1[301] = "VT";
boxarrItems1[302] = "Aveysgore";
boxarrArea1[302] = "";
boxarrItemsGrp1[302] = "VT";
boxarrItems1[303] = "Bakersfield";
boxarrArea1[303] = "";
boxarrItemsGrp1[303] = "VT";
boxarrItems1[304] = "Baltimore";
boxarrArea1[304] = "";
boxarrItemsGrp1[304] = "VT";
boxarrItems1[305] = "Barnard";
boxarrArea1[305] = "";
boxarrItemsGrp1[305] = "VT";
boxarrItems1[306] = "Barnet";
boxarrArea1[306] = "";
boxarrItemsGrp1[306] = "VT";
boxarrItems1[307] = "Barrecity";
boxarrArea1[307] = "";
boxarrItemsGrp1[307] = "VT";
boxarrItems1[308] = "Barretown";
boxarrArea1[308] = "";
boxarrItemsGrp1[308] = "VT";
boxarrItems1[309] = "Barton";
boxarrArea1[309] = "";
boxarrItemsGrp1[309] = "VT";
boxarrItems1[310] = "Bellowsfl";
boxarrArea1[310] = "";
boxarrItemsGrp1[310] = "VT";
boxarrItems1[311] = "Belvidere";
boxarrArea1[311] = "";
boxarrItemsGrp1[311] = "VT";
boxarrItems1[312] = "Bennington";
boxarrArea1[312] = "";
boxarrItemsGrp1[312] = "VT";
boxarrItems1[313] = "Benson";
boxarrArea1[313] = "";
boxarrItemsGrp1[313] = "VT";
boxarrItems1[314] = "Berkshire";
boxarrArea1[314] = "";
boxarrItemsGrp1[314] = "VT";
boxarrItems1[315] = "Berlin";
boxarrArea1[315] = "";

boxarrItemsGrp1[315] = "VT";
boxarrItems1[316] = "Bethel";
boxarrArea1[316] = "";
boxarrItemsGrp1[316] = "VT";
boxarrItems1[317] = "Bloomfield";
boxarrArea1[317] = "";
boxarrItemsGrp1[317] = "VT";
boxarrItems1[318] = "Bolton";
boxarrArea1[318] = "";
boxarrItemsGrp1[318] = "VT";
boxarrItems1[319] = "Bradford";
boxarrArea1[319] = "";
boxarrItemsGrp1[319] = "VT";
boxarrItems1[320] = "Braintree";
boxarrArea1[320] = "";
boxarrItemsGrp1[320] = "VT";
boxarrItems1[321] = "Brandon";
boxarrArea1[321] = "";
boxarrItemsGrp1[321] = "VT";
boxarrItems1[322] = "Brattleboro";
boxarrArea1[322] = "";
boxarrItemsGrp1[322] = "VT";
boxarrItems1[323] = "Bridgeport";
boxarrArea1[323] = "";
boxarrItemsGrp1[323] = "VT";
boxarrItems1[324] = "Bridgewater";
boxarrArea1[324] = "";
boxarrItemsGrp1[324] = "VT";
boxarrItems1[325] = "Brighton";
boxarrArea1[325] = "";
boxarrItemsGrp1[325] = "VT";
boxarrItems1[326] = "Bristol";
boxarrArea1[326] = "";
boxarrItemsGrp1[326] = "VT";
boxarrItems1[327] = "Brookfield";
boxarrArea1[327] = "";
boxarrItemsGrp1[327] = "VT";
boxarrItems1[328] = "Brookline";
boxarrArea1[328] = "";
boxarrItemsGrp1[328] = "VT";
boxarrItems1[329] = "Browngton";
boxarrArea1[329] = "";
boxarrItemsGrp1[329] = "VT";
boxarrItems1[330] = "Brownsville";
boxarrArea1[330] = "";
boxarrItemsGrp1[330] = "VT";
boxarrItems1[331] = "Brunswick";
boxarrArea1[331] = "";
boxarrItemsGrp1[331] = "VT";
boxarrItems1[332] = "Buelsgore";
boxarrArea1[332] = "";
boxarrItemsGrp1[332] = "VT";
boxarrItems1[333] = "Burke";
boxarrArea1[333] = "";
boxarrItemsGrp1[333] = "VT";
boxarrItems1[334] = "Burlington";
boxarrArea1[334] = "";
boxarrItemsGrp1[334] = "VT";
boxarrItems1[335] = "Cabot";
boxarrArea1[335] = "";
boxarrItemsGrp1[335] = "VT";
boxarrItems1[336] = "Calais";
boxarrArea1[336] = "";
boxarrItemsGrp1[336] = "VT";
boxarrItems1[337] = "Cambridge";
boxarrArea1[337] = "";
boxarrItemsGrp1[337] = "VT";
boxarrItems1[338] = "Canaan";
boxarrArea1[338] = "";
boxarrItemsGrp1[338] = "VT";
boxarrItems1[339] = "Castleton";
boxarrArea1[339] = "";
boxarrItemsGrp1[339] = "VT";
boxarrItems1[340] = "Cavendish";
boxarrArea1[340] = "";
boxarrItemsGrp1[340] = "VT";
boxarrItems1[341] = "Charleston";
boxarrArea1[341] = "";
boxarrItemsGrp1[341] = "VT";
boxarrItems1[342] = "Charlotte";
boxarrArea1[342] = "";
boxarrItemsGrp1[342] = "VT";
boxarrItems1[343] = "Chelsea";
boxarrArea1[343] = "";
boxarrItemsGrp1[343] = "VT";
boxarrItems1[344] = "Chester";
boxarrArea1[344] = "";
boxarrItemsGrp1[344] = "VT";
boxarrItems1[345] = "Chittenden";
boxarrArea1[345] = "";
boxarrItemsGrp1[345] = "VT";
boxarrItems1[346] = "Clarendon";
boxarrArea1[346] = "";
boxarrItemsGrp1[346] = "VT";
boxarrItems1[347] = "Colchester";
boxarrArea1[347] = "";
boxarrItemsGrp1[347] = "VT";
boxarrItems1[348] = "Concord";
boxarrArea1[348] = "";
boxarrItemsGrp1[348] = "VT";
boxarrItems1[349] = "Corinth";
boxarrArea1[349] = "";
boxarrItemsGrp1[349] = "VT";
boxarrItems1[350] = "Cornwall";
boxarrArea1[350] = "";
boxarrItemsGrp1[350] = "VT";
boxarrItems1[351] = "Coventry";
boxarrArea1[351] = "";
boxarrItemsGrp1[351] = "VT";
boxarrItems1[352] = "Craftsbury";
boxarrArea1[352] = "";
boxarrItemsGrp1[352] = "VT";
boxarrItems1[353] = "Danby";
boxarrArea1[353] = "";
boxarrItemsGrp1[353] = "VT";
boxarrItems1[354] = "Danville";
boxarrArea1[354] = "";
boxarrItemsGrp1[354] = "VT";
boxarrItems1[355] = "Derby";
boxarrArea1[355] = "";
boxarrItemsGrp1[355] = "VT";
boxarrItems1[356] = "Dorset";
boxarrArea1[356] = "";
boxarrItemsGrp1[356] = "VT";
boxarrItems1[357] = "Dover";
boxarrArea1[357] = "";
boxarrItemsGrp1[357] = "VT";
boxarrItems1[358] = "Dummerston";
boxarrArea1[358] = "";
boxarrItemsGrp1[358] = "VT";
boxarrItems1[359] = "Duxbury";
boxarrArea1[359] = "";
boxarrItemsGrp1[359] = "VT";
boxarrItems1[360] = "East Haven";
boxarrArea1[360] = "";
boxarrItemsGrp1[360] = "VT";
boxarrItems1[361] = "East Montpelier";
boxarrArea1[361] = "";
boxarrItemsGrp1[361] = "VT";
boxarrItems1[362] = "Eden";
boxarrArea1[362] = "";
boxarrItemsGrp1[362] = "VT";
boxarrItems1[363] = "Elmore";
boxarrArea1[363] = "";
boxarrItemsGrp1[363] = "VT";
boxarrItems1[364] = "Enosburg";
boxarrArea1[364] = "";
boxarrItemsGrp1[364] = "VT";
boxarrItems1[365] = "Essex";
boxarrArea1[365] = "";
boxarrItemsGrp1[365] = "VT";
boxarrItems1[366] = "Fairfax";
boxarrArea1[366] = "";
boxarrItemsGrp1[366] = "VT";
boxarrItems1[367] = "Fairfield";
boxarrArea1[367] = "";
boxarrItemsGrp1[367] = "VT";
boxarrItems1[368] = "Fairhaven";
boxarrArea1[368] = "";
boxarrItemsGrp1[368] = "VT";
boxarrItems1[369] = "Fairlee";
boxarrArea1[369] = "";
boxarrItemsGrp1[369] = "VT";
boxarrItems1[370] = "Fayston";
boxarrArea1[370] = "";
boxarrItemsGrp1[370] = "VT";
boxarrItems1[371] = "Ferdinand";
boxarrArea1[371] = "";
boxarrItemsGrp1[371] = "VT";
boxarrItems1[372] = "Ferrisburg";
boxarrArea1[372] = "";
boxarrItemsGrp1[372] = "VT";
boxarrItems1[373] = "Fletcher";
boxarrArea1[373] = "";
boxarrItemsGrp1[373] = "VT";
boxarrItems1[374] = "Franklin";
boxarrArea1[374] = "";
boxarrItemsGrp1[374] = "VT";
boxarrItems1[375] = "Georgia";
boxarrArea1[375] = "";
boxarrItemsGrp1[375] = "VT";
boxarrItems1[376] = "Gilman";
boxarrArea1[376] = "";
boxarrItemsGrp1[376] = "VT";
boxarrItems1[377] = "Glastnbury";
boxarrArea1[377] = "";
boxarrItemsGrp1[377] = "VT";
boxarrItems1[378] = "Glover";
boxarrArea1[378] = "";
boxarrItemsGrp1[378] = "VT";
boxarrItems1[379] = "Goshen";
boxarrArea1[379] = "";
boxarrItemsGrp1[379] = "VT";
boxarrItems1[380] = "Grafton";
boxarrArea1[380] = "";
boxarrItemsGrp1[380] = "VT";
boxarrItems1[381] = "Granby";
boxarrArea1[381] = "";
boxarrItemsGrp1[381] = "VT";
boxarrItems1[382] = "Grandisle";
boxarrArea1[382] = "";
boxarrItemsGrp1[382] = "VT";
boxarrItems1[383] = "Granville";
boxarrArea1[383] = "";
boxarrItemsGrp1[383] = "VT";
boxarrItems1[384] = "Greensboro";
boxarrArea1[384] = "";
boxarrItemsGrp1[384] = "VT";
boxarrItems1[385] = "Groton";
boxarrArea1[385] = "";
boxarrItemsGrp1[385] = "VT";
boxarrItems1[386] = "Guildhall";
boxarrArea1[386] = "";
boxarrItemsGrp1[386] = "VT";
boxarrItems1[387] = "Guilford";
boxarrArea1[387] = "";
boxarrItemsGrp1[387] = "VT";
boxarrItems1[388] = "Halifax";
boxarrArea1[388] = "";
boxarrItemsGrp1[388] = "VT";
boxarrItems1[389] = "Hancock";
boxarrArea1[389] = "";
boxarrItemsGrp1[389] = "VT";
boxarrItems1[390] = "Hardwick";
boxarrArea1[390] = "";
boxarrItemsGrp1[390] = "VT";
boxarrItems1[391] = "Hartford";
boxarrArea1[391] = "";
boxarrItemsGrp1[391] = "VT";
boxarrItems1[392] = "Hartland";
boxarrArea1[392] = "";
boxarrItemsGrp1[392] = "VT";
boxarrItems1[393] = "Highgate";
boxarrArea1[393] = "";
boxarrItemsGrp1[393] = "VT";
boxarrItems1[394] = "Hinesburg";
boxarrArea1[394] = "";
boxarrItemsGrp1[394] = "VT";
boxarrItems1[395] = "Holland";
boxarrArea1[395] = "";
boxarrItemsGrp1[395] = "VT";
boxarrItems1[396] = "Hubbardton";
boxarrArea1[396] = "";
boxarrItemsGrp1[396] = "VT";
boxarrItems1[397] = "Huntington";
boxarrArea1[397] = "";
boxarrItemsGrp1[397] = "VT";
boxarrItems1[398] = "Hydepark";
boxarrArea1[398] = "";
boxarrItemsGrp1[398] = "VT";
boxarrItems1[399] = "Ira";
boxarrArea1[399] = "";
boxarrItemsGrp1[399] = "VT";
boxarrItems1[400] = "Irasburg";
boxarrArea1[400] = "";
boxarrItemsGrp1[400] = "VT";
boxarrItems1[401] = "Islelamont";
boxarrArea1[401] = "";
boxarrItemsGrp1[401] = "VT";
boxarrItems1[402] = "Jamaica";
boxarrArea1[402] = "";
boxarrItemsGrp1[402] = "VT";
boxarrItems1[403] = "Jay";
boxarrArea1[403] = "";
boxarrItemsGrp1[403] = "VT";
boxarrItems1[404] = "Jericho";
boxarrArea1[404] = "";
boxarrItemsGrp1[404] = "VT";
boxarrItems1[405] = "Johnson";
boxarrArea1[405] = "";
boxarrItemsGrp1[405] = "VT";
boxarrItems1[406] = "Killington";
boxarrArea1[406] = "";
boxarrItemsGrp1[406] = "VT";
boxarrItems1[407] = "Kirby";
boxarrArea1[407] = "";
boxarrItemsGrp1[407] = "VT";
boxarrItems1[408] = "Landgrove";
boxarrArea1[408] = "";
boxarrItemsGrp1[408] = "VT";
boxarrItems1[409] = "Leicester";
boxarrArea1[409] = "";
boxarrItemsGrp1[409] = "VT";
boxarrItems1[410] = "Lemington";
boxarrArea1[410] = "";
boxarrItemsGrp1[410] = "VT";
boxarrItems1[411] = "Lewis";
boxarrArea1[411] = "";
boxarrItemsGrp1[411] = "VT";
boxarrItems1[412] = "Lincoln";
boxarrArea1[412] = "";
boxarrItemsGrp1[412] = "VT";
boxarrItems1[413] = "Londnderry";
boxarrArea1[413] = "";
boxarrItemsGrp1[413] = "VT";
boxarrItems1[414] = "Lowell";
boxarrArea1[414] = "";
boxarrItemsGrp1[414] = "VT";
boxarrItems1[415] = "Ludlow";
boxarrArea1[415] = "";
boxarrItemsGrp1[415] = "VT";
boxarrItems1[416] = "Lunenburg";
boxarrArea1[416] = "";
boxarrItemsGrp1[416] = "VT";
boxarrItems1[417] = "Lyndon";
boxarrArea1[417] = "";
boxarrItemsGrp1[417] = "VT";
boxarrItems1[418] = "Maidstone";
boxarrArea1[418] = "";
boxarrItemsGrp1[418] = "VT";
boxarrItems1[419] = "Manchester";
boxarrArea1[419] = "";
boxarrItemsGrp1[419] = "VT";
boxarrItems1[420] = "Marlboro";
boxarrArea1[420] = "";
boxarrItemsGrp1[420] = "VT";
boxarrItems1[421] = "Marshfield";
boxarrArea1[421] = "";
boxarrItemsGrp1[421] = "VT";
boxarrItems1[422] = "Mendon";
boxarrArea1[422] = "";
boxarrItemsGrp1[422] = "VT";
boxarrItems1[423] = "Middle Tonw Springs";
boxarrArea1[423] = "";
boxarrItemsGrp1[423] = "VT";
boxarrItems1[424] = "Middlebury";
boxarrArea1[424] = "";
boxarrItemsGrp1[424] = "VT";
boxarrItems1[425] = "Middlesex";
boxarrArea1[425] = "";
boxarrItemsGrp1[425] = "VT";
boxarrItems1[426] = "Milton";
boxarrArea1[426] = "";
boxarrItemsGrp1[426] = "VT";
boxarrItems1[427] = "Monkton";
boxarrArea1[427] = "";
boxarrItemsGrp1[427] = "VT";
boxarrItems1[428] = "Montgomery";
boxarrArea1[428] = "";
boxarrItemsGrp1[428] = "VT";
boxarrItems1[429] = "Montpelier";
boxarrArea1[429] = "";
boxarrItemsGrp1[429] = "VT";
boxarrItems1[430] = "Moretown";
boxarrArea1[430] = "";
boxarrItemsGrp1[430] = "VT";
boxarrItems1[431] = "Morgan";
boxarrArea1[431] = "";
boxarrItemsGrp1[431] = "VT";
boxarrItems1[432] = "Morristown";
boxarrArea1[432] = "";
boxarrItemsGrp1[432] = "VT";
boxarrItems1[433] = "Mount Holly";
boxarrArea1[433] = "";
boxarrItemsGrp1[433] = "VT";
boxarrItems1[434] = "Mount Tabor";
boxarrArea1[434] = "";
boxarrItemsGrp1[434] = "VT";
boxarrItems1[435] = "New Haven";
boxarrArea1[435] = "";
boxarrItemsGrp1[435] = "VT";
boxarrItems1[436] = "Newark";
boxarrArea1[436] = "";
boxarrItemsGrp1[436] = "VT";
boxarrItems1[437] = "Newbury";
boxarrArea1[437] = "";
boxarrItemsGrp1[437] = "VT";
boxarrItems1[438] = "Newfane";
boxarrArea1[438] = "";
boxarrItemsGrp1[438] = "VT";
boxarrItems1[439] = "Newport";
boxarrArea1[439] = "";
boxarrItemsGrp1[439] = "VT";
boxarrItems1[440] = "Newport center";
boxarrArea1[440] = "";
boxarrItemsGrp1[440] = "VT";
boxarrItems1[441] = "North Hero";
boxarrArea1[441] = "";
boxarrItemsGrp1[441] = "VT";
boxarrItems1[442] = "Northfield";
boxarrArea1[442] = "";
boxarrItemsGrp1[442] = "VT";
boxarrItems1[443] = "Norton";
boxarrArea1[443] = "";
boxarrItemsGrp1[443] = "VT";
boxarrItems1[444] = "Norwich";
boxarrArea1[444] = "";
boxarrItemsGrp1[444] = "VT";
boxarrItems1[445] = "Orange";
boxarrArea1[445] = "";
boxarrItemsGrp1[445] = "VT";
boxarrItems1[446] = "Orwell";
boxarrArea1[446] = "";
boxarrItemsGrp1[446] = "VT";
boxarrItems1[447] = "Panton";
boxarrArea1[447] = "";
boxarrItemsGrp1[447] = "VT";
boxarrItems1[448] = "Pawlet";
boxarrArea1[448] = "";
boxarrItemsGrp1[448] = "VT";
boxarrItems1[449] = "Peacham";
boxarrArea1[449] = "";
boxarrItemsGrp1[449] = "VT";
boxarrItems1[450] = "Perkinsville";
boxarrArea1[450] = "";
boxarrItemsGrp1[450] = "VT";
boxarrItems1[451] = "Peru";
boxarrArea1[451] = "";
boxarrItemsGrp1[451] = "VT";
boxarrItems1[452] = "Pittsfield";
boxarrArea1[452] = "";
boxarrItemsGrp1[452] = "VT";
boxarrItems1[453] = "Pittsford";
boxarrArea1[453] = "";
boxarrItemsGrp1[453] = "VT";
boxarrItems1[454] = "Plainfield";
boxarrArea1[454] = "";
boxarrItemsGrp1[454] = "VT";
boxarrItems1[455] = "Plymouth";
boxarrArea1[455] = "";
boxarrItemsGrp1[455] = "VT";
boxarrItems1[456] = "Pomfret";
boxarrArea1[456] = "";
boxarrItemsGrp1[456] = "VT";
boxarrItems1[457] = "Poultney";
boxarrArea1[457] = "";
boxarrItemsGrp1[457] = "VT";
boxarrItems1[458] = "Pownal";
boxarrArea1[458] = "";
boxarrItemsGrp1[458] = "VT";
boxarrItems1[459] = "Proctor";
boxarrArea1[459] = "";
boxarrItemsGrp1[459] = "VT";
boxarrItems1[460] = "Putney";
boxarrArea1[460] = "";
boxarrItemsGrp1[460] = "VT";
boxarrItems1[461] = "Quechee";
boxarrArea1[461] = "";
boxarrItemsGrp1[461] = "VT";
boxarrItems1[462] = "Randolph";
boxarrArea1[462] = "";
boxarrItemsGrp1[462] = "VT";
boxarrItems1[463] = "Reading";
boxarrArea1[463] = "";
boxarrItemsGrp1[463] = "VT";
boxarrItems1[464] = "Readsboro";
boxarrArea1[464] = "";
boxarrItemsGrp1[464] = "VT";
boxarrItems1[465] = "Richford";
boxarrArea1[465] = "";
boxarrItemsGrp1[465] = "VT";
boxarrItems1[466] = "Richmond";
boxarrArea1[466] = "";
boxarrItemsGrp1[466] = "VT";
boxarrItems1[467] = "Ripton";
boxarrArea1[467] = "";
boxarrItemsGrp1[467] = "VT";
boxarrItems1[468] = "Rochester";
boxarrArea1[468] = "";
boxarrItemsGrp1[468] = "VT";
boxarrItems1[469] = "Rockingham";
boxarrArea1[469] = "";
boxarrItemsGrp1[469] = "VT";
boxarrItems1[470] = "Roxbury";
boxarrArea1[470] = "";
boxarrItemsGrp1[470] = "VT";
boxarrItems1[471] = "Royalton";
boxarrArea1[471] = "";
boxarrItemsGrp1[471] = "VT";
boxarrItems1[472] = "Rupert";
boxarrArea1[472] = "";
boxarrItemsGrp1[472] = "VT";
boxarrItems1[473] = "Rutland";
boxarrArea1[473] = "";
boxarrItemsGrp1[473] = "VT";
boxarrItems1[474] = "Ryegate";
boxarrArea1[474] = "";
boxarrItemsGrp1[474] = "VT";
boxarrItems1[475] = "Salisbury";
boxarrArea1[475] = "";
boxarrItemsGrp1[475] = "VT";
boxarrItems1[476] = "Sandgate";
boxarrArea1[476] = "";
boxarrItemsGrp1[476] = "VT";
boxarrItems1[477] = "Searsburg";
boxarrArea1[477] = "";
boxarrItemsGrp1[477] = "VT";
boxarrItems1[478] = "Shaftsbury";
boxarrArea1[478] = "";
boxarrItemsGrp1[478] = "VT";
boxarrItems1[479] = "Sharon";
boxarrArea1[479] = "";
boxarrItemsGrp1[479] = "VT";
boxarrItems1[480] = "Sheffield";
boxarrArea1[480] = "";
boxarrItemsGrp1[480] = "VT";
boxarrItems1[481] = "Sheldon";
boxarrArea1[481] = "";
boxarrItemsGrp1[481] = "VT";
boxarrItems1[482] = "Shoreham";
boxarrArea1[482] = "";
boxarrItemsGrp1[482] = "VT";
boxarrItems1[483] = "Shrewsbury";
boxarrArea1[483] = "";
boxarrItemsGrp1[483] = "VT";
boxarrItems1[484] = "Somerset";
boxarrArea1[484] = "";
boxarrItemsGrp1[484] = "VT";
boxarrItems1[485] = "South Burlington";
boxarrArea1[485] = "";
boxarrItemsGrp1[485] = "VT";
boxarrItems1[486] = "South Hero";
boxarrArea1[486] = "";
boxarrItemsGrp1[486] = "VT";
boxarrItems1[487] = "Springfield";
boxarrArea1[487] = "";
boxarrItemsGrp1[487] = "VT";
boxarrItems1[488] = "St. Albans";
boxarrArea1[488] = "";
boxarrItemsGrp1[488] = "VT";
boxarrItems1[489] = "St. George";
boxarrArea1[489] = "";
boxarrItemsGrp1[489] = "VT";
boxarrItems1[490] = "St. Johnsbury";
boxarrArea1[490] = "";
boxarrItemsGrp1[490] = "VT";
boxarrItems1[491] = "Stamford";
boxarrArea1[491] = "";
boxarrItemsGrp1[491] = "VT";
boxarrItems1[492] = "Stannard";
boxarrArea1[492] = "";
boxarrItemsGrp1[492] = "VT";
boxarrItems1[493] = "Starksboro";
boxarrArea1[493] = "";
boxarrItemsGrp1[493] = "VT";
boxarrItems1[494] = "Stockbridge";
boxarrArea1[494] = "";
boxarrItemsGrp1[494] = "VT";
boxarrItems1[495] = "Stowe";
boxarrArea1[495] = "";
boxarrItemsGrp1[495] = "VT";
boxarrItems1[496] = "Strafford";
boxarrArea1[496] = "";
boxarrItemsGrp1[496] = "VT";
boxarrItems1[497] = "Stratton";
boxarrArea1[497] = "";
boxarrItemsGrp1[497] = "VT";
boxarrItems1[498] = "Sudbury";
boxarrArea1[498] = "";
boxarrItemsGrp1[498] = "VT";
boxarrItems1[499] = "Sunderland";
boxarrArea1[499] = "";
boxarrItemsGrp1[499] = "VT";
boxarrItems1[500] = "Sutton";
boxarrArea1[500] = "";
boxarrItemsGrp1[500] = "VT";
boxarrItems1[501] = "Swanton";
boxarrArea1[501] = "";
boxarrItemsGrp1[501] = "VT";
boxarrItems1[502] = "Thetford";
boxarrArea1[502] = "";
boxarrItemsGrp1[502] = "VT";
boxarrItems1[503] = "Tinmouth";
boxarrArea1[503] = "";
boxarrItemsGrp1[503] = "VT";
boxarrItems1[504] = "Topsham";
boxarrArea1[504] = "";
boxarrItemsGrp1[504] = "VT";
boxarrItems1[505] = "Townshend";
boxarrArea1[505] = "";
boxarrItemsGrp1[505] = "VT";
boxarrItems1[506] = "Troy";
boxarrArea1[506] = "";
boxarrItemsGrp1[506] = "VT";
boxarrItems1[507] = "Tunbridge";
boxarrArea1[507] = "";
boxarrItemsGrp1[507] = "VT";
boxarrItems1[508] = "Underhill";
boxarrArea1[508] = "";
boxarrItemsGrp1[508] = "VT";
boxarrItems1[509] = "Vergennes";
boxarrArea1[509] = "";
boxarrItemsGrp1[509] = "VT";
boxarrItems1[510] = "Vernon";
boxarrArea1[510] = "";
boxarrItemsGrp1[510] = "VT";
boxarrItems1[511] = "Vershire";
boxarrArea1[511] = "";
boxarrItemsGrp1[511] = "VT";
boxarrItems1[512] = "Victory";
boxarrArea1[512] = "";
boxarrItemsGrp1[512] = "VT";
boxarrItems1[513] = "Waitsfield";
boxarrArea1[513] = "";
boxarrItemsGrp1[513] = "VT";
boxarrItems1[514] = "Walden";
boxarrArea1[514] = "";
boxarrItemsGrp1[514] = "VT";
boxarrItems1[515] = "Wallingford";
boxarrArea1[515] = "";
boxarrItemsGrp1[515] = "VT";
boxarrItems1[516] = "Waltham";
boxarrArea1[516] = "";
boxarrItemsGrp1[516] = "VT";
boxarrItems1[517] = "Wardsboro";
boxarrArea1[517] = "";
boxarrItemsGrp1[517] = "VT";
boxarrItems1[518] = "Warner's Grant";
boxarrArea1[518] = "";
boxarrItemsGrp1[518] = "VT";
boxarrItems1[519] = "Warren";
boxarrArea1[519] = "";
boxarrItemsGrp1[519] = "VT";
boxarrItems1[520] = "Warren Gore";
boxarrArea1[520] = "";
boxarrItemsGrp1[520] = "VT";
boxarrItems1[521] = "Washington";
boxarrArea1[521] = "";
boxarrItemsGrp1[521] = "VT";
boxarrItems1[522] = "Waterbury";
boxarrArea1[522] = "";
boxarrItemsGrp1[522] = "VT";
boxarrItems1[523] = "Waterford";
boxarrArea1[523] = "";
boxarrItemsGrp1[523] = "VT";
boxarrItems1[524] = "Waterville";
boxarrArea1[524] = "";
boxarrItemsGrp1[524] = "VT";
boxarrItems1[525] = "Wells";
boxarrArea1[525] = "";
boxarrItemsGrp1[525] = "VT";
boxarrItems1[526] = "Wellsriver";
boxarrArea1[526] = "";
boxarrItemsGrp1[526] = "VT";
boxarrItems1[527] = "West Fairlee";
boxarrArea1[527] = "";
boxarrItemsGrp1[527] = "VT";
boxarrItems1[528] = "West Haven";
boxarrArea1[528] = "";
boxarrItemsGrp1[528] = "VT";
boxarrItems1[529] = "West Rutland";
boxarrArea1[529] = "";
boxarrItemsGrp1[529] = "VT";
boxarrItems1[530] = "West Windsor";
boxarrArea1[530] = "";
boxarrItemsGrp1[530] = "VT";
boxarrItems1[531] = "Westfield";
boxarrArea1[531] = "";
boxarrItemsGrp1[531] = "VT";
boxarrItems1[532] = "Westford";
boxarrArea1[532] = "";
boxarrItemsGrp1[532] = "VT";
boxarrItems1[533] = "Westminister";
boxarrArea1[533] = "";
boxarrItemsGrp1[533] = "VT";
boxarrItems1[534] = "Westmore";
boxarrArea1[534] = "";
boxarrItemsGrp1[534] = "VT";
boxarrItems1[535] = "Weston";
boxarrArea1[535] = "";
boxarrItemsGrp1[535] = "VT";
boxarrItems1[536] = "Wethrsfld";
boxarrArea1[536] = "";
boxarrItemsGrp1[536] = "VT";
boxarrItems1[537] = "Weybridge";
boxarrArea1[537] = "";
boxarrItemsGrp1[537] = "VT";
boxarrItems1[538] = "Wheelock";
boxarrArea1[538] = "";
boxarrItemsGrp1[538] = "VT";
boxarrItems1[539] = "Whiting";
boxarrArea1[539] = "";
boxarrItemsGrp1[539] = "VT";
boxarrItems1[540] = "Whitingham";
boxarrArea1[540] = "";
boxarrItemsGrp1[540] = "VT";
boxarrItems1[541] = "Williamstown";
boxarrArea1[541] = "";
boxarrItemsGrp1[541] = "VT";
boxarrItems1[542] = "Williston";
boxarrArea1[542] = "";
boxarrItemsGrp1[542] = "VT";
boxarrItems1[543] = "Wilmington";
boxarrArea1[543] = "";
boxarrItemsGrp1[543] = "VT";
boxarrItems1[544] = "Windham";
boxarrArea1[544] = "";
boxarrItemsGrp1[544] = "VT";
boxarrItems1[545] = "Windoski";
boxarrArea1[545] = "";
boxarrItemsGrp1[545] = "VT";
boxarrItems1[546] = "Windsor";
boxarrArea1[546] = "";
boxarrItemsGrp1[546] = "VT";
boxarrItems1[547] = "Winhall";
boxarrArea1[547] = "";
boxarrItemsGrp1[547] = "VT";
boxarrItems1[548] = "Wolcott";
boxarrArea1[548] = "";
boxarrItemsGrp1[548] = "VT";
boxarrItems1[549] = "Woodbury";
boxarrArea1[549] = "";
boxarrItemsGrp1[549] = "VT";
boxarrItems1[550] = "Woodford";
boxarrArea1[550] = "";
boxarrItemsGrp1[550] = "VT";
boxarrItems1[551] = "Woodstock";
boxarrArea1[551] = "";
boxarrItemsGrp1[551] = "VT";
boxarrItems1[552] = "Worcester";
boxarrArea1[552] = "";
boxarrItemsGrp1[552] = "VT";

function boxSelectChange(control, controlToPopulate, ItemArray, GroupArray) {
var myEle ;
var x ;
// Empty the second drop down box of any choices
for (var q=controlToPopulate.options.length;q>=0;q--) controlToPopulate.options[q]=null;
myEle = document.createElement("option") ;
myEle.value = "";
myEle.text = "Choose a town";
if (navigator.appName != 'Microsoft Internet Explorer') {;
	controlToPopulate.add(myEle, null) ;
} else {
	controlToPopulate.add(myEle) ;
}
myEle = document.createElement("option") ;
myEle.value = "";
myEle.text = "------------------";
if (navigator.appName != 'Microsoft Internet Explorer') {;
	controlToPopulate.add(myEle, null) ;
} else {
	controlToPopulate.add(myEle) ;
}
// if (control.name == "firstChoice") {
// Empty the third drop down box of any choices
//for (var q=myChoices.thirdChoice.options.length;q>=0;q--) myChoices.thirdChoice.options[q] = null;
//}
// ADD Default Choice - in case there are no values
//myEle = document.createElement("option") ;
//myEle.value = 0 ;
//myEle.text = "[SELECT]" ;
//controlToPopulate.add(myEle, null) ;
// Now loop through the array of individual items
// Any containing the same child id are added to
// the second dropdown box
for ( x = 0 ; x < ItemArray.length  ; x++ ) {
if ( GroupArray[x] == control.value ) {
if ( ItemArray[x].length > 0 ) {
myEle = document.createElement("option") ;
myEle.value = ItemArray[x] + ":" + GroupArray[x];
myEle.text = ItemArray[x];
if (navigator.appName != 'Microsoft Internet Explorer') {;
controlToPopulate.add(myEle, null) ;
} else {
controlToPopulate.add(myEle) ;
}
if (boxarrArea1[x].length > 0) {
myEle = document.createElement("option") ;
myEle.value = boxarrArea1[x] + ":" + GroupArray[x];
myEle.text = '   ' + boxarrArea1[x];
if (navigator.appName != 'Microsoft Internet Explorer') {;
controlToPopulate.add(myEle, null) ;
} else {
controlToPopulate.add(myEle) ;
}
}
} else {
myEle = document.createElement("option") ;
myEle.value = boxarrArea1[x] + ":" + GroupArray[x];
myEle.text = '   ' + boxarrArea1[x];
if (navigator.appName != 'Microsoft Internet Explorer') {;
controlToPopulate.add(myEle, null) ;
} else {
controlToPopulate.add(myEle) ;
}
}
}
}
//}
}

//-->
