$(document).ready
   (            
        function()
        {    
            $('select.State').change(function()
            {        
                $(this).parents('div.form').find('select.District').load('/getDistricts.aspx?state='+$(this).val());
            }
            
        );
    }
);

$(document).ready
   (            
        function()
        {    
            $('select.quickState').change(function()
            {                    
                $(this).parents('div.form').find('select.quickDistrict').load('/getDistricts.aspx?state='+$(this).val());
            }
            
        );
    }
);
