$( "#content" ).load( "personal.php", function () {
$( "#but_area" ).html( "<button>кнопка</button>" );
} );
function category_change()
{
var url = $(this).val();
window.location.href = url;
}
$('#category-select').on('change',category_change);
var select = document.getElementById('category-select');
select.onchange = function()
{
window.location.href=this.value;
}