function ValidateState(source, arguments)
{
  //-1 - not selected State
  if (arguments.Value != -1)
    arguments.IsValid = true;
  else
    arguments.IsValid = false;
}
