$('<div class="f-alert icon-ok">Добавлено в корзину<button class="f-alert-close" title="Закрыть"></button></div>')
<input type='checkbox' id='taxi' onchange="checkk(this);"/>
<input type='checkbox' id='ucheb' onchange="checkk(this);"/>
<script>
function checkk(elem) {
var id = elem.id;
if(id=='taxi') {
$('#ucheb').removeAttr("checked");
}
if(id=='ucheb') {
$('#taxi').removeAttr("checked");
}
}
</script>