function selectf(pid,cid){
	$.post('select_city.php',{pid:pid,cid:cid},rendXML);
	function rendXML(xml){
		$('#selectcity').html(xml);
		//$('#selectcity').val(xml);
	}
	return true;
}

