jQuery(document).ready(function(){
	jQuery('select[name=productvartiantotbyu]').change(function(){
		var globi =0;
		var obj = this;
		var kids = jQuery(this).children();
		kids.each(function(i){
			if (jQuery(this).val() == jQuery(obj).find("option:selected").val()){
				globi = i;
			}
		});
		var cont = jQuery(this).parent().parent();
		cont.children('p.itemprices').each(function(i){
			jQuery(this).hide();
		});
		cont.children('p.itemprices').eq(globi).show();
	});
});