diff --git a/apps/contacts/js/contacts.js b/apps/contacts/js/contacts.js
index 3672a094f4aa2459de0e3d71a41f15d827e2f486..bb8b6b89e57c53d771cca51fb6d6b3e3f3540fa1 100644
--- a/apps/contacts/js/contacts.js
+++ b/apps/contacts/js/contacts.js
@@ -154,7 +154,6 @@ Contacts={
 			$('#contacts_downloadcard').tipsy({gravity: 'ne'});
 			$('#contacts_propertymenu_button').tipsy();
 			$('#contacts_newcontact, #chooseaddressbook').tipsy({gravity: 'sw'});
-			console.log($('#contacts_newcontact').html());
 		},
 		Card:{
 			id:'',
diff --git a/apps/contacts/js/jquery.combobox.js b/apps/contacts/js/jquery.combobox.js
index d9d8ccc00f7bf901e2139c9085811f26fd7e84b2..f12d1d7dd20ef3934bd054950f79e7dee94f8615 100644
--- a/apps/contacts/js/jquery.combobox.js
+++ b/apps/contacts/js/jquery.combobox.js
@@ -11,7 +11,6 @@
 			editable: true
 		},
 		_create: function() {
-			//console.log('_create: ' + this.options['id']);
 			var self = this,
 				select = this.element.hide(),
 				selected = select.children(':selected'),
@@ -112,7 +111,6 @@
 			$.Widget.prototype.destroy.call( this );
 		},
 		value: function(val) {
-			console.log('combobox.value: ' + val);
 			if(val != undefined) {
 				this.input.val(val);
 			} else {