function show_product(section_id,category_id) {
    $.get("ajax.php", { secid: section_id, catid: category_id },
          function (data, textStatus) {
            $(".scroll").show().empty().html(data);
    });
}