function SelectedBrand(brandID)
    {
        if (brandID != 'all')
        {
            $('#div-product-filter').mask("Loading...");
            $.ajax
                ({
                    type: "GET",
                    url : "/ajax/selectedbrand/",
                    data : "brandID="+brandID,
                    success: handleSelectedBrandResponse
                });
        }
        else
        {
            //$('#select-line').attr('disabled', 'disabled');
            $('#select-line').html('<option value="all">any line</option>');
            //$('#select-model').attr('disabled', 'disabled');
            $('#select-model').html('<option value="all">any model</option>');
        }
    }

    function handleSelectedBrandResponse(msg)
    {
        $('#div-product-filter').unmask();
        var response = eval("("+msg+")");
        if (response["linelist"])
        {
            $('#select-line').attr('disabled', '');
            response["linelist"] = '<option value="all">Select line...</option><option value="all">any line</option>'+response["linelist"];
            $('#select-line').html(response["linelist"]);
            $('#select-model').html('<option value="all">any model</option>');

        }
        else
        {
            //$('#select-line').attr('disabled', 'disabled');
            $('#select-line').html('<option value="all">any line</option>');
            //$('#select-model').attr('disabled', 'disabled');
            $('#select-model').html('<option value="all">any model</option>');
        }


    }

function SelectedLine(lineID)
    {
        if (lineID != 'all')
        {
            $('#div-product-filter').mask("Loading...");
            $.ajax
                ({
                    type: "GET",
                    url : "/ajax/selectedline/",
                    data : "lineID="+lineID,
                    success: handleSelectedLineResponse
                });
        }
        else
        {               
            $('#select-model').html('<option value="all">any model</option>');
        }

    }

function handleSelectedLineResponse(msg)
    {
        $('#div-product-filter').unmask();
        var response = eval("("+msg+")");
        if (response["linelist"])
        {
            $('#select-model').attr('disabled', '');
            response["linelist"] = '<option value="all">Select model...</option><option value="all">any model</option>'+response["linelist"];
            $('#select-model').html(response["linelist"]);
        }
        else
        {
            $('#select-model').html('<option value="all">any model</option>');
        }
    }

function aboutPartNumber()
{
    $("#about-part-number-form").dialog({
    modal: true,
    draggable : false,
    width: 700
    
    }).dialog("open", "moveToTop");
}



