// form fields description structure
var a_fields = {
	'street':{'l':'Address **','r':true,'f':'domain','t':'a_street'},
	'city':{'l':'City **','r':true,'f':'domain','t':'a_city'},
	'state':{'l':'State/Province','r':true,'f':'domain','t':'a_state'}
},

o_config = {
	'to_disable' : ['Submit', 'Reset'],
	'alert' : 1
}

// validator constructor call
var v = new validator('ZipsLookup', a_fields, o_config);

