$(document).ready(function() {
	$("div.select_list select").each(function(i,e){
		$(this).css('opacity', 0);
		$(this).change(function() {
			$(this).next().html($(this).children('option:selected').text());
		});
		$(this).next().html($(this).children('option:selected').text());
	});
});
