function ytForceOptions()
{
  var ret = true; 
  $(this).find("select").each( function() {
    if ($(this).attr("selectedIndex") == 0)
    {
      alert("Please select a " + this.name);
      ret = false;
      return(false);
    }
  });
  return(ret);
}
function ytForceOptionsQuote(frm) {
    var ret = true;
    $(frm).find("select").each(function () {
        if ($(this).attr("selectedIndex") == 0) {
            alert("Please select a " + this.name);
            ret = false;
            return (false);
        }
    });
    return (ret);
}

jQuery(document).ready( function() {
  jQuery("form[action*='order.store.yahoo']").submit(ytForceOptions);
  jQuery("form[action*='test-order']").submit(ytForceOptions);
  jQuery("#requestButton").click(requestQuote);
});
