easy, fill in the validation box for the option. So for a given option named "OPTION", first item "SELECT ONE":
Code:
if (product_option('OPTION').selectedIndex == 0){
alert('Please select product option.');
return false;}
else{ return true; }
So if the user doesnt change the option from "SELECT ONE" it will alert them and not allow adding to cart.