/* javascript function to control Attribute Choose
 *  Author		bruce
 *  Date 		2009.9
 *  Other things	
*/
$(document).ready(function() {
	$("form").submit( function() {		
	 	if($("select", this).val()==$("#hidSelected").val()){
	 		alert("Please Choose Gifts Option!");
	 		return false;
	 	}
	 	return true;
	} ); 
});