    $(document).ready(function()
    {
        $("#select1").change(function()
        {
         $.post("./General/select2.php",{ id:$(this).val() },function(data){$("#select2").html(data);})
        });
    })
