Stateless form issues

Stateless form issues

 This is almost copied out of the examples with changes reflecting my forms. I am trying to create a stateless form so that when cnumber is selected it will display name and account as well. But somehow the script yells at me whenever i try to save it and i get this error with a long list of what it was expecting...including that it was expecting "form" hmmmm. I tried form = Transfer and it didn't mind that but it didn't like {

Encountered "form Transfer" at line 1, column 3. Was expecting one of:

form  Transfer

{

    store data in zc = false


    CNumber1

    (

        displayname  =  "CNumber"

        type  =  picklist

        values  =  clients.CNumber

        on user input

        {

            r  =  clients  [CNumber == input.CNumber1];

            input.Account = r.Account;

    input.Name = r.FirstName;

        }

    )


    Account

    (

        type  =  text

    )


    Name

    (

        type  =  text

    )


}