$(document).ready(function(){
	var txt = "Kérem adja meg a lehetséges kézbesítési időpontokat!";
	$("#rendeles-comment").html(txt);
	$("#rendeles-comment").focus(function(){
		if ($(this).html() == txt) $(this).html("");
	});
	$("#rendeles-comment").blur(function(){
		if ($(this).html() == '') $(this).html(txt);
	});
});
