﻿
function remove2() {
    $("#scbox1").html('');
}

function create2() {
    var select = "<label for=\"event-combo\">Choose the states:</label><br /><select id=\"event-combo\" name=\"event-combo\">";
    select += "<option value=\"\" selected>-Type or Select-</option>";
    $("#selectbox").children().each(function() {
        var $this = $(this);
        select += "<option value=\"" + $this.attr("value") + "\">" + $this.text() + "</option>";
    });

    select += "</select>";
    $("#Hi").html(select);
    $("#event-combo").sexyCombo({
        dropUp: true,
        emptyText: "-Type or Select-",
        suffix: "_class",
        hiddenSuffix: "_type",
        skin: "custom"
    });

    $('div.custom li:nth-child(odd)').css("background-color", "#CBCBCB");

}

function get2() {
    //alert($("#event-combo").val());
    alert($("[name=event-combo_type]").val());

}

