You can easily break it down (but I took a lot of time to find it :)) - if you look at the application / code / kernel /Mage/Core/Block/Abstract.php in the PHPDoc public function getChildChildHtml , you will see that the second parameter defined the name of the child block. So you can call first before rendering the price block
<?php echo $this->getChildChildHtml('container1', 'product.info.options.wrapper', true, true) ?>
and after displaying the price block, call
<?php echo $this->getChildChildHtml('container1', 'product.info.options.wrapper.bottom', true, true) ?>
source share