First... the parameter for the <$view> widget is "tiddler" not "name".... thus:
<$view tiddler={{!!parent}}/>
I assume that was just a mistake when you posted your message, and not in your code.
Now... for the question you asked...
To get the text from a tiddler whose title is specified by the "parent" field in the current tiddler, you can use an "inline filter", like this:
{{{ [{!!parent}get[text]] }}}
So your macro call would look like this:
<$macrocall $name="remembercz" id=<<currentTiddler>> text="" reference={{{ [{!!parent}get[text]] }}}/>
enjoy,
-e