Copy of Snippet "Copy of Numbered lists"

Is it possible to add a freetext option at the bottom of a numbered list (if required only) and to be included in the numbered list.
For example (using snippet below) - in the snippet below that describes and lists the most commonly encountered patterns of abdominal pain. Often the patient will chose more that one, such as Pain that occurs before meals AND occurs upon bending over or stooping AND is progressive without remission. However, some patients will also describe one or more unusual patterns or triggers to their pain that is not included in the snippet formmenu choice but nevertheless important and needs to be documented; eg Pain that occurs before meals AND occurs upon bending over or stooping AND is progressive without remission AND ALSO occurs when eating a particular bizarre food AND ALSO occurs when travelling on aeroplanes. The last 2 are not common enough to include in the formmenu list but important enough to be documented.

{note}Pattern of abdominal pain: {formmenu: name=patternap; multiple=yes; has no recognisable pattern; is post-prandial; occurs before meals; is nocturnal; occurs before defaecation; occurs after defaecation; occurs upon bending over or stooping; occurs on lifting or straining; is progressive without remission; is cyclical - usually at monthly intervals}
{endnote}
{if: len(patternap) > 0 and count(patternap) > 0; trim=yes}
The pattern of the abdominal pain: {repeat: for i in seq(1, count(patternap))}
{=i}. {=patternap[i]}{endrepeat}
{endif: trim=left}

@George_Marinos, why not just add a formtext at the bottom? I don't think it really needs to be added inside the list. The important thing is that the patient has the opportunity to add the note. Or am I missing something?

{note}Pattern of abdominal pain: {formmenu: name=patternap; multiple=yes; has no recognisable pattern; is post-prandial; occurs before meals; is nocturnal; occurs before defaecation; occurs after defaecation; occurs upon bending over or stooping; occurs on lifting or straining; is progressive without remission; is cyclical - usually at monthly intervals}
{endnote}
{if: len(patternap) > 0 and count(patternap) > 0; trim=yes}
The pattern of the abdominal pain: {repeat: for i in seq(1, count(patternap))}
{=i}. {=patternap[i]}{endrepeat}
{endif: trim=left}
Additional symptoms, triggers and notes:
{formparagraph}

This is a fall back position that I had considered but trying to avoid only because it would be preferable that the Additional .... appears only if checked;

As suggested above means that it is always present and may confuse patients & takes extra space on the form.

One related query - is it possible to replace the numbers in a numbered list by bullets points?

George Marinos