Pop this in your postbit where you want it to show
Code:
<if condition="$post[field[high]X[/high]]=='yes'">stuff for yes<else />stuff for no</if>
You need to replace the [high]X[/high] with the field number for the profile field you are using. You can find this by going to the profile field manager page in the ACP and looking for where it says something like field5 for the field that you have created. Remember the number to replace the X with.
if you do not wish anything to show up if the answer is no, then use
Code:
<if condition="$post[field[high]X[/high]]=='yes'">stuff for yes</if>
NOTE: The yes must be identical to the one in the profile field otherwise this will not work.