Also the runtime value you probably can't just set to a recordset field like that... unfortunately the DW code won't work like this.
Try setting it to a $_POST, $_GET, or $_SESSION value and just set the value above the recordset manually by hand coding so for example you could set the runtime value to $_GET['TEMPIDFORRS'] and add the code on top of the page:
<?php
$_GET['TEMPIDFORRS'] = $row_rsItems['ItemOptionsID'];
?>