function printSelect(label,id, items)
{
	if(items != '<lucidshop_xtra_'+label+'>' && items != '')
	{
		var selectBox = label+":&nbsp;<select name='shop_var_"+label+"'>";
		var option=items.split(",");
	
		for(var i=0; i<option.length; i++)
		{
			selectBox += "<option value='"+option[i]+"'>"+option[i]+"</option>";
		}
	
		selectBox += "</select>";
		var elId = "" + label + "" + id;
		var el = document.getElementById(elId);
		if (el != null)
		{
			el.innerHTML = selectBox;
		}
		else
		{
			document.write(selectBox);
		}
	}
}
