function stateObject(name, abbreviation) {
	this.name = name;
	this.abbreviation = abbreviation;
}

var stateObjectArray = new Array();

stateObjectArray[stateObjectArray.length] = new stateObject('Alabama',  'AL');
stateObjectArray[stateObjectArray.length] = new stateObject('Arkansas',  'AR');
stateObjectArray[stateObjectArray.length] = new stateObject('Arizona',  'AZ');
stateObjectArray[stateObjectArray.length] = new stateObject('California',  'CA');
stateObjectArray[stateObjectArray.length] = new stateObject('Colorado',  'CO');
stateObjectArray[stateObjectArray.length] = new stateObject('Florida',  'FL');
stateObjectArray[stateObjectArray.length] = new stateObject('Georgia',  'GA');
stateObjectArray[stateObjectArray.length] = new stateObject('Iowa',  'IA');
stateObjectArray[stateObjectArray.length] = new stateObject('Illinois',  'IL');
stateObjectArray[stateObjectArray.length] = new stateObject('Indiana',  'IN');
stateObjectArray[stateObjectArray.length] = new stateObject('Kansas',  'KS');
stateObjectArray[stateObjectArray.length] = new stateObject('Kentucky',  'KY');
stateObjectArray[stateObjectArray.length] = new stateObject('Louisiana',  'LA');
stateObjectArray[stateObjectArray.length] = new stateObject('Massachusetts',  'MA');
stateObjectArray[stateObjectArray.length] = new stateObject('Maryland',  'MD');
stateObjectArray[stateObjectArray.length] = new stateObject('Michigan',  'MI');
stateObjectArray[stateObjectArray.length] = new stateObject('Minnesota',  'MN');
stateObjectArray[stateObjectArray.length] = new stateObject('Missouri',  'MO');
stateObjectArray[stateObjectArray.length] = new stateObject('Montana',  'MT');
stateObjectArray[stateObjectArray.length] = new stateObject('North Carolina',  'NC');
stateObjectArray[stateObjectArray.length] = new stateObject('New Jersey',  'NJ');
stateObjectArray[stateObjectArray.length] = new stateObject('New York',  'NY');
stateObjectArray[stateObjectArray.length] = new stateObject('Ohio',  'OH');
stateObjectArray[stateObjectArray.length] = new stateObject('Ontario Canada',  'ON');
stateObjectArray[stateObjectArray.length] = new stateObject('Oregon',  'OR');
stateObjectArray[stateObjectArray.length] = new stateObject('Pennsylvania',  'PA');
stateObjectArray[stateObjectArray.length] = new stateObject('Rhode Island',  'RI');
stateObjectArray[stateObjectArray.length] = new stateObject('South Carolina',  'SC');
stateObjectArray[stateObjectArray.length] = new stateObject('Tennessee',  'TN');
stateObjectArray[stateObjectArray.length] = new stateObject('Texas',  'TX');
stateObjectArray[stateObjectArray.length] = new stateObject('Utah',  'UT');
stateObjectArray[stateObjectArray.length] = new stateObject('Virginia',  'VA');
stateObjectArray[stateObjectArray.length] = new stateObject('Wisconsin',  'WI');


function ServiceType(name, id){
	this.name = name;
	this.id = id;
}

var ServiceTypeArray = new Array();

ServiceTypeArray[ServiceTypeArray.length] = new ServiceType('Motor Home','motorhome');
ServiceTypeArray[ServiceTypeArray.length] = new ServiceType('Recreational Vehicles','rv');
ServiceTypeArray[ServiceTypeArray.length] = new ServiceType('Commercial','commercial');
ServiceTypeArray[ServiceTypeArray.length] = new ServiceType('Bus/Mobility','bus');