$(document).ready( function(){

		$('#add-category').click(function(){
			
			var category = $('#category').val();

			var totalkids = $('#categoryList').children().size();//Get total items in the UL
			var newkidnumber = totalkids + 1;//Set the index of the new LI we are creating
			
			if(category == ''){
			
				alert('You must select a category from the drop down menu');
				
			}else{
			
			var categorySplit = category.split('---');
				
					var tagid = 'category_'+newkidnumber+categorySplit[0];
					
					var listitem = "<li id=\""+tagid+"\"><a href=\"javascript:{}\" onclick=\"delete_tag('"+tagid+"')\"><img src=\"graphic/delete.png\" style=\"padding-right: 10px\"></a>"+categorySplit[1]+" <input type=\"hidden\" name=\"categories[]\" value=\""+categorySplit[0]+"\"></li>";
			
					$('#categoryList').append(listitem);
				
			}
			
			return false;
			
		});
		
		
		
});

function delete_tag(delete_tag){
	
	document.getElementById(delete_tag).parentNode.removeChild(document.getElementById(delete_tag));
	showQuoteButton();
	
}

