Behaviour.register({
	'#Form_AddListingForm_Phone' : {
		onajaxupdate : function() {
			if(this.value.match('(.*) - (.*)')) {
				$('Form_AddListingForm').Phone.value = RegExp.$1;
				$('Form_AddListingForm').BusinessName.value = RegExp.$2;
			}
		}
	}
});