function fetchDistricts()
{
	 $('#country option').each(function(){
                                if($(this).attr('selected') == true){
                                        var country = $(this).val();
                                        $.ajax({        type: "GET",
                                                                url: "includes/country.php?country="+country,                  
                                                                success: function(msg){	                                              				                                           $('#district').html('');                                                                                 
                                                        $('#district').append(msg);                                 
                                        }
                                                });}
                });     
}



