$(document).ready(function(){
	$(".select-style select").change(function(){
		var html = $(this).find('option:selected').html();
		$(this).parent().find('.select-style-text').html(html);
	});
});
