$(document).ready(function() {
	$('input[@name=plan]').click(function() {
		var el = $('#logo_tr');
		if ($(this).val() == 3 || $(this).val() == 4)	el.css('display', 'table-row');
		else	el.css('display', 'none');
	});
	$('input[@name=send]').click(function() {
		var checked = $('#acepto').attr('checked');
		if (checked == true)	return true;
		else {
			alert('Debes aceptar los terminos y condiciones para continuar.');
			return false;
		}
	});
});