OK, if i browse to that page directly,:
products_lookup.php?GroupingID=1&Options=19
it gives a 500 error. this is not a very helpful error for determining the issue.
Try adding the following code at line 1 of that page to turn error reporting on:
<?php
error_reporting(E_ALL);
ini_set('display_errors','on');
?>