var list_add_widget = {
	'.abbylistselect' : function (el) {
     		el.onchange = function() {
			var url = el.options[el.selectedIndex].value; 
			if(url) window.location.href = url;
		};
	}
};
Behaviour.register(list_add_widget);
