protected void Country_Validate(object source, System.Web.UI.WebControls.ServerValidateEventArgs args)
        {
            if (args.Value.Length >= 1)
            {
                string country = Convert.ToString(args.Value);
                //Check if country already exists

                int result = MappingsCountry.CheckIfCountryExists(country);

                if (result == 0)
                {
                    //Does not exist continue
                    args.IsValid = true;
                }
                else
                {
                    //Does exist cancel
                    args.IsValid = false;
                    this.CustomValidatorCountry.Text = Resources.lang.MappingDetailsErrorMessageCountryDuplicate;
                }
            }
            else
            {
                //Not valid
                args.IsValid = false;
                this.CustomValidatorCountry.Text = Resources.lang.MappingDetailsErrorMessageCountry;
            }
        }