public void deleteProfile()
    {
        string         name           = profileDrop.options[profileDrop.value].text;
        CurrentProfile currentProfile = GameObject.Find("CurrentProfile").GetComponent <CurrentProfile>();

        ProfileManagement.RemoveProfile(name);
        dropDownUpdate();
    }