$(function() {
	var city	= $("#ccity b").html();
	var section	= $("#bcsel").text();
	$.get
	(
		'/ventarentaymas/keywords.php', 
		{ s: section, c: city },
		function(data) 
		{
			$('#breadcrumb').append(data);
		}
	);
});