Do your images have the options for field17 embedded in their URL? If so you could easily build the HTML using string concatenation. Suppose your images are stored in the folder "images/housemembership" and their filenames are composed of the options and the extension ".png". Then you would use the plugin code:
PHP Code:
if ($post['field17'])
{
$template_hook['postbit_userinfo_right_after_posts'] .= '<dt>House Membership</dt> <dd><img src="images/housemembership/' . $post['field17'] . '.png" /></dd>';
}