// JavaScript Document
function oplataChangeHandler() {
	var currentIndex = $('#oplata').attr('selectedIndex');
	if (currentIndex) {
		$('tr.courier_options').css('display', 'table-row');
	} else {
		$('tr.courier_options').css('display', 'none');
	};
	
};