function load_features(main_type) {
    $.ajax({
        type: "GET",
        url: "ajax-load.features.php",
        data: "type="+main_type,
        success: function(opts){
            $("#s_features").html(opts);
        }
    });
}
