It is auto-selecting the least-expensive shipping method.
You can turn that off by editing your /includes/modules/pages/checkout_shipping/header_php.php
around line 167 you have this:
PHP Code:
if ( !$_SESSION['shipping'] || ( $_SESSION['shipping'] && ($_SESSION['shipping'] == false) && (zen_count_shipping_modules() > 1) ) ) $_SESSION['shipping'] = $shipping_modules->cheapest();
Just put two slashes // in front of that line and re-upload it to your server.
Now it won't calculate the cheapest option anymore, and will require that the customer actually makes a choice.