﻿function GetPrice(Language, ID_Group, ID_User) {
    $(document).ready(function() {
        $.ajax({
            type: "POST",
            url: "/../../../../../../Services/PriceService.asmx/GetLowestPrice",
            data: JSON.stringify({ Language: Language, ID_Group: ID_Group, ID_User: ID_User }),
            contentType: "application/json; charset=utf-8",
            dataType: 'json',
            // dataType: "json",
            success: function(msg) {
                $("#GroupDefault_gif_" + ID_Group).css("display", "none");
                $("#GroupDefault_" + ID_Group).append(msg.d);
            },
            error: function(msg, text) {
                $("#GroupDefault_" + ID_Group).append(text);
            }
        });
    })
}

