
$(document).ready(function(){

	$('#pow').keyup(function(){
		$.ajax({
			type: 'POST',
			url: BASE_URL + 'ajax_ceny.php',
			data: 'pow=' + $('#pow').val(),
			dataType: "text",
			success: function(res){
				$('#cena').html(res);
				//$('#pow_submit').removeAttr('disabled');
			},
			error:
				function(XMLHttpRequest, textStatus, errorThrown){
				// typically only one of textStatus or errorThrown will have info
  					alert(textStatus + '\n' + errorThrown);
				},
			beforeSend:
				function(){
					//$('#pow_submit').attr('disabled', 'true');
				}
		});

	});
});