Well when in need one often stumbles upon the solution.
This is what I did to achieve what I wanted.
<span class="attach-post-image" style="height:250px; display:block; background:url('<?php
if (get_post_meta($post->ID, 'front_image', true))
echo get_post_meta($post->ID, 'front_image', true);
else {
the_post_image_url('large'); ?>
<?php
}
?>') center center repeat">
</span>