You need some parenthesis after your second condition (why are you using a second one anyway?).
Code:
if ($post[field40])
{
if ($post[field40] & 4)
{
$ImagePath = vB_Template_Runtime::fetchStyleVar('imgdir_misc').'/critique/nocritique.png';
$template_hook['postbit_userinfo_right_after_posts'] .=
'<br /><dt>Critique Level</dt><br /> <dd><img src="' . $ImagePath . '"/></dd>';
}
}