| Сообщение от copenhagen | 
	| Нужна кнопка, которая бы появлялась слева от чекбокса при его выборе. | 
	
Как вариант...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
button {
	visibility: hidden;
}
</style>
<script type="text/javascript">
$(function (){
	$('input:checkbox').click(function (){
		var val=(this.checked)? 'visible': 'hidden';
		$(this).prev().css('visibility',val);
	});
});
</script>
</head>
<body>
<div>
	<button>Info</button>
	<input type='checkbox' />
</div>
<div>
	<button>Info</button>
	<input type='checkbox' />
</div>
</body>
</html>