function RequestForShops() {
    var shopLogosMode = jQuery("#shopLogosMode");
    var shopLogosCount = jQuery("#shopLogosCount");

    jQuery.post("~/ShopLogos/ShopLogos.ashx",
     { mode: shopLogosMode[0].value, count: shopLogosCount[0].value },
                        function(data) {
                            jQuery('#shopsOutPut').html(data);
                        });
}
