var custom_ob = {
	updateRecords : function(recs){
		
		recs.each(function(e){
			if(e.CITY){
			 e.CITY = e.CITY.toUpperCase();
			 e['CITY2'] = e.CITY.gsub(' ', '-');
			}
			if(e.PROVINCE){
			 e.PROVINCE = e.PROVINCE.toUpperCase();	
			  e['PROVINCE2'] = e.PROVINCE.gsub(' ', '-');		 			 
			}
		}.bind(this));
		
		return recs;
	}
}
