$(function(){
	$('.select_el').fadeTo(0, 0);
	$.each($('.select_el'), function(){
		$(this).parent().find('.sel_list_bg').html($('select option:selected', this).text());
	});
	$('.select_el > select').change(function(){
		$(this).parents('.sel_list_container').find('.sel_list_bg').text($(this).find('option:selected').text());
	});
	/*contact select
	$('.contact_select_el').fadeTo(0, 0);
	$.each($('.contact_select_el'), function(){
		$(this).parent().find('.contact_sel_list_bg').html($('select option:selected', this).text());
	});
	$('.contact_select_el > select').change(function(){
		$(this).parents('.contact_sel_list_container').find('.contact_sel_list_bg').text($(this).find('option:selected').text());
	});
	*/
});
