function postdata(ShopID,Price,Cainei){
$.ajax({
url: "<?php echo base_url();?>Procute/get_ajax/ShopID/Price/Cainei",
cache: false,
type:"get",
/*data:"ShopID="+$("ShopID_shop").val()+"&Price="+$("Price_shop").val()+"&Cainei="+$("Cainei_shop").val(),*/
success: function(result){
alert(result);
},
error: function(){
$("#out").hide();
$("#price_out").ajaxError(reportError);
}
})
}