function easyFormSelect(list,baseColor,onColor,background_over,background_base) {
list.each(function(element) {
 
	var fx = new Fx.Styles(element, {duration:200, wait:false});
 
	element.addEvent('mouseenter', function(){
		this.focus();
		fx.start({
			'background-color': background_over,
			'color': onColor

		});
	});
 
	element.addEvent('mouseleave', function(){
		this.blur();
		fx.start({
			'background-color': background_base,
			'color': baseColor
		});
	});
 
});
}