function selecteaza_tip_cont(){

	if ($('tip_cont').value=='1'){
		$('hiddencontent1').style.display = "block";
		$('hiddencontent2').style.display = "block";
		$('inregistrare').disabled = false;
	}else if ($('tip_cont').value=='0'){
		$('hiddencontent1').style.display = "block";
		$('hiddencontent2').style.display = "none";
		$('inregistrare').disabled = false;
	}else{
		$('hiddencontent2').style.display = "none";
		$('hiddencontent1').style.display = "none";
		$('inregistrare').disabled = true;
	}

}

function selecteaza_categorie(){
	var cat = $('categoria').options[$('categoria').selectedIndex].text;

	if ((cat.search('Restaurante')) > '0'){
		$('ptable').style.display = "none";
	}else{
		$('ptable').style.display = "block";
	}

}
