stateObjS = new Object();
stateObjS["al"] = {stateName:'Alabama'}; 
stateObjS["ak"] = {stateName:'Alaska'};
stateObjS["az"] = {stateName:'Arizona'}; 
stateObjS["ar"] = {stateName:'Arkansas'};
stateObjS["ca"] = {stateName:'California'};
stateObjS["co"] = {stateName:'Colorado'};
stateObjS["ct"] = {stateName:'Connecticut'};
stateObjS["de"] = {stateName:'Delaware'};
stateObjS["fl"] = {stateName:'Florida'};
stateObjS["ga"] = {stateName:'Georgia'};
stateObjS["hi"] = {stateName:'Hawaii'};
stateObjS["id"] = {stateName:'Idaho'};
stateObjS["il"] = {stateName:'Illinois'}; 
stateObjS["in"] = {stateName:'Indiana'}; 
stateObjS["ia"] = {stateName:'Iowa'};
stateObjS["ks"] = {stateName:'Kansas'};
stateObjS["ky"] = {stateName:'Kentucky'};
stateObjS["la"] = {stateName:'Louisiana'};
stateObjS["me"] = {stateName:'Maine'}; 
stateObjS["md"] = {stateName:'Maryland'};
stateObjS["ma"] = {stateName:'Massachusetts'};
stateObjS["mi"] = {stateName:'Michigan'};
stateObjS["mn"] = {stateName:'Minnesota'};
stateObjS["ms"] = {stateName:'Mississippi'};
stateObjS["mo"] = {stateName:'Missouri'};
stateObjS["mt"] = {stateName:'Montana'};
stateObjS["ne"] = {stateName:'Nebraska'};
stateObjS["nv"] = {stateName:'Nevada'};
stateObjS["nh"] = {stateName:'New Hampshire'};
stateObjS["nj"] = {stateName:'New Jersey'}; 
stateObjS["nm"] = {stateName:'New Mexico'};
stateObjS["ny"] = {stateName:'New York'};
stateObjS["nc"] = {stateName:'North Carolina'};
stateObjS["nd"] = {stateName:'North Dakota'};
stateObjS["oh"] = {stateName:'Ohio'};
stateObjS["ok"] = {stateName:'Oklahoma'};
stateObjS["or"] = {stateName:'Oregon'};
stateObjS["pa"] = {stateName:'Pennsylvania'};
stateObjS["ri"] = {stateName:'Rhode Island'};
stateObjS["sc"] = {stateName:'South Carolina'}; 
stateObjS["sd"] = {stateName:'South Dakota'}; 
stateObjS["tn"] = {stateName:'Tennessee'};
stateObjS["tx"] = {stateName:'Texas'};
stateObjS["ut"] = {stateName:'Utah'};
stateObjS["vt"] = {stateName:'Vermont'};
stateObjS["va"] = {stateName:'Virginia'};
stateObjS["wa"] = {stateName:'Washington'};
stateObjS["dc"] = {stateName:'Washington DC'};
stateObjS["wv"] = {stateName:'West Virginia'};
stateObjS["wi"] = {stateName:'Wisconsin'};
stateObjS["wy"] = {stateName:'Wyoming'};

stateAbbrevKey = new Object();
stateAbbrevKey['ALABAMA'] = {code:'AL'};
stateAbbrevKey['ALASKA'] = {code:'AK'};
stateAbbrevKey['ARIZONA'] = {code:'AZ'};
stateAbbrevKey['ARKANSAS'] = {code:'AR'};
stateAbbrevKey['CALIFORNIA'] = {code:'CA'};
stateAbbrevKey['COLORADO'] = {code:'CO'};
stateAbbrevKey['CONNECTICUT'] = {code:'CT'};
stateAbbrevKey['DELAWARE'] = {code:'DE'};
stateAbbrevKey['FLORIDA'] = {code:'FL'};
stateAbbrevKey['GEORGIA'] = {code:'GA'};
stateAbbrevKey['HAWAII'] = {code:'HI'};
stateAbbrevKey['IDAHO'] = {code:'ID'};
stateAbbrevKey['ILLINOIS'] = {code:'IL'};
stateAbbrevKey['INDIANA'] = {code:'IN'};
stateAbbrevKey['IOWA'] = {code:'IA'};
stateAbbrevKey['KANSAS'] = {code:'KS'};
stateAbbrevKey['KENTUCKY'] = {code:'KY'};
stateAbbrevKey['LOUISIANA'] = {code:'LA'};
stateAbbrevKey['MAINE'] = {code:'ME'};
stateAbbrevKey['MARYLAND'] = {code:'MD'};
stateAbbrevKey['MASSACHUSETTS'] = {code:'MA'};
stateAbbrevKey['MICHIGAN'] = {code:'MI'};
stateAbbrevKey['MINNESOTA'] = {code:'MN'};
stateAbbrevKey['MISSISSIPPI'] = {code:'MS'};
stateAbbrevKey['MISSOURI'] = {code:'MO'};
stateAbbrevKey['MONTANA'] = {code:'MT'};
stateAbbrevKey['NEBRASKA'] = {code:'NB'};
stateAbbrevKey['NEVADA'] = {code:'NV'};
stateAbbrevKey['NEW HAMPSHIRE'] = {code:'NH'};
stateAbbrevKey['NEW JERSEY'] = {code:'NJ'};
stateAbbrevKey['NEW MEXICO'] = {code:'NM'};
stateAbbrevKey['NEW YORK'] = {code:'NY'};
stateAbbrevKey['NORTH CAROLINA'] = {code:'NC'};
stateAbbrevKey['NORTH DAKOTA'] = {code:'ND'};
stateAbbrevKey['OHIO'] = {code:'OH'};
stateAbbrevKey['OKLAHOMA'] = {code:'OK'};
stateAbbrevKey['OREGON'] = {code:'OR'};
stateAbbrevKey['PENNSYLVANIA'] = {code:'PA'};
stateAbbrevKey['RHODE ISLAND'] = {code:'RI'};
stateAbbrevKey['SOUTH CAROLINA'] = {code:'SC'};
stateAbbrevKey['SOUTH DAKOTA'] = {code:'SD'};
stateAbbrevKey['TENNESSEE'] = {code:'TN'};
stateAbbrevKey['TEXAS'] = {code:'TX'};
stateAbbrevKey['UTAH'] = {code:'UT'};
stateAbbrevKey['VERMONT'] = {code:'VT'};
stateAbbrevKey['VIRGINIA'] = {code:'VA'};
stateAbbrevKey['WASHINGTON'] = {code:'WA'};
stateAbbrevKey['WASHINGTON DC'] = {code:'DC'};
stateAbbrevKey['WEST VIRGINIA'] = {code:'WV'};
stateAbbrevKey['WISCONSIN'] = {code:'WI'};
stateAbbrevKey['WYOMING'] = {code:'WY'};


stateArr = ['AL','AK','AZ','AR','CA','CO','CT','DE','DC','FL','GA','HI','ID','IL','IN','IA','KS','KY','LA','ME','MD','MA','MI','MN','MS','MO','MT','NE','NV','NH','NJ','NM','NY','NC','ND','OH','OK','OR','PA','RI','SC','SD','TN','TX','UT','VT','VA','WA','WV','WI','WY'];


