function validateoptions(){
var sel = document.getElementById('selectBid');
		if (document.getElementById("Options")) {
		    var myList = document.getElementById("Options");
		    var s = myList.options[myList.selectedIndex].text; 
		    if((s=="Select Options")) {
			    alert('Please Select An Option Before Adding This Item To Your Cart!');

				if(sel){
					sel.options[0].selected = true;
					document.getElementById('selectBid').name="";
					document.getElementById('selectBid').className="";

				}
			return false;
			}
		    else
			    {
				if(sel){
					if(sel.options[sel.selectedIndex].index == 1){
						document.getElementById('selectBid').name="#TB_inline?height=150&amp;width=400&amp;inlineId=divBid1";
						document.getElementById('selectBid').className="thickbox";
						
						yesNo();
					}
				}
			return true;
			}
		}
}
