$(function(){
  
	$('select').bind('change', function(){
		resetSelects(this.id);
	})
	resetSelects();

	LSCalendars["date_from"]=new LSCalendar();
	LSCalendars["date_from"].SetFormat("dd.mm.yyyy");

	$('input[id*="_mask"]').bind('keyup', function(){
		var id = this.id;
		id = id.replace(/_mask/g,"");
		resetSelects(id, true);
	})
	
})