$(document).ready(function(){
	
	 $(".show_product_options").change(function () {
		
         var str ='';
         var id;
         var cena ='';
         $(".showaj").hide();
         $("select option:selected").each(function () {
        	
        	 id = $(this).val() + " ";
        	 str += $("#info"+id).text() + " ";  
        	 cena += $("#cena"+id).text() + " ";  
             }); //$('.target').toggle();
         $("#info"+id).toggle();
         //$("#dod_informacje").text(str);
         $("#cena").text(cena);
       })
       .trigger('change');

});
